Skip to content

Commit 9a08264

Browse files
authored
Merge pull request #1525 from fortunatomaldonado/Issue1524
fix: #1524 indent and outdent icons are switched
2 parents 29402d0 + b2207d2 commit 9a08264

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/buttons/button-indent-block.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class ButtonIndentBlock extends React.Component {
6161
onClick={this.execCommand}
6262
tabIndex={this.props.tabIndex}
6363
title={AlloyEditor.Strings.indent}>
64-
<ButtonIcon symbol="indent-less" />
64+
<ButtonIcon symbol="indent-more" />
6565
</button>
6666
);
6767
}

src/components/buttons/button-outdent-block.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class ButtonOutdentBlock extends React.Component {
6161
onClick={this.execCommand}
6262
tabIndex={this.props.tabIndex}
6363
title={AlloyEditor.Strings.outdent}>
64-
<ButtonIcon symbol="indent-more" />
64+
<ButtonIcon symbol="indent-less" />
6565
</button>
6666
);
6767
}

0 commit comments

Comments
 (0)