We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6110a7d commit 4599033Copy full SHA for 4599033
src/core/components/operations.jsx
@@ -108,7 +108,7 @@ export default class Operations extends React.Component {
108
}
109
</div>
110
111
- <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)}>
112
<svg className="arrow" width="20" height="20">
113
<use href={showTag ? "#large-arrow-down" : "#large-arrow"} xlinkHref={showTag ? "#large-arrow-down" : "#large-arrow"} />
114
</svg>
0 commit comments