瀏覽代碼

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>


Loading…
取消
儲存