소스 검색

fix(rendering): operation expand/collapse button title (#4130)

bubble
Helder Sepulveda 6 년 전
committed by kyle
부모
커밋
4599033b5a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/core/components/operations.jsx

+ 1
- 1
src/core/components/operations.jsx 파일 보기

@@ -108,7 +108,7 @@ export default class Operations extends React.Component {
}
</div>

<button className="expand-operation" title="Expand operation" onClick={() => layoutActions.show(isShownKey, !showTag)}>
<button className="expand-operation" title={showTag ? "Collapse operation": "Expand operation"} onClick={() => layoutActions.show(isShownKey, !showTag)}>
<svg className="arrow" width="20" height="20">
<use href={showTag ? "#large-arrow-down" : "#large-arrow"} xlinkHref={showTag ? "#large-arrow-down" : "#large-arrow"} />
</svg>


불러오는 중...
취소
저장