1
0
mirror of https://github.com/flarum/core.git synced 2025-07-09 11:03:06 +02:00

Sort out default dropdown caret icons

This commit is contained in:
Toby Zerner
2015-08-04 11:42:24 +09:30
parent b8a224f87b
commit a14be00041
2 changed files with 3 additions and 2 deletions

View File

@ -25,7 +25,7 @@ export default class Dropdown extends Component {
props.buttonClassName = props.buttonClassName || '';
props.contentClassName = props.contentClassName || '';
props.label = props.label || app.trans('core.controls');
props.caretIcon = typeof props.caretIcon !== 'undefined' ? props.caretIcon : 'sort';
props.caretIcon = typeof props.caretIcon !== 'undefined' ? props.caretIcon : 'caret-down';
}
view() {