exit menu was set at the end

This commit is contained in:
Olsza 2020-10-23 08:34:29 +02:00
parent d8c60c6f2c
commit cdc0868282

View file

@ -114,17 +114,17 @@ class IntlHelperBarView extends React.Component{
onClick: function() { onClick: function() {
this.fireCommand('locale gl; levels'); this.fireCommand('locale gl; levels');
}.bind(this) }.bind(this)
}, {
icon: 'signout',
onClick: function() {
this.props.onExit();
}.bind(this)
}, { }, {
text: 'Slovensko', text: 'Slovensko',
testID: 'slovenian', testID: 'slovenian',
onClick: function() { onClick: function() {
this.fireCommand('locale sl_SI; levels'); this.fireCommand('locale sl_SI; levels');
}.bind(this) }.bind(this)
}, {
icon: 'signout',
onClick: function() {
this.props.onExit();
}.bind(this)
} }
]; ];
} }