Przeglądaj źródła

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

bubble
Helder Sepulveda 6 lat temu
committed by kyle
rodzic
commit
4599033b5a
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/core/components/operations.jsx

+ 1
- 1
src/core/components/operations.jsx Wyświetl plik

@@ -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>


Ładowanie…
Anuluj
Zapisz