Skip to content

Commit 4599033

Browse files
heldersepushockey
authored andcommitted
fix(rendering): operation expand/collapse button title (#4130)
1 parent 6110a7d commit 4599033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/components/operations.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export default class Operations extends React.Component {
108108
}
109109
</div>
110110

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

0 commit comments

Comments
 (0)