1
0
mirror of https://github.com/flarum/core.git synced 2025-07-14 13:26:23 +02:00

Fix indentation

This commit is contained in:
Franz Liedke
2017-03-12 23:03:46 +01:00
parent 60d3d6ef99
commit c1eec2b261

View File

@ -44,23 +44,23 @@ export default class HeaderSecondary extends Component {
for (const locale in app.data.locales) {
locales.push(Button.component({
active: app.data.locale === locale,
children: app.data.locales[locale],
icon: app.data.locale === locale ? 'check' : true,
onclick: () => {
if (app.session.user) {
app.session.user.savePreferences({locale}).then(() => window.location.reload());
} else {
document.cookie = `locale=${locale}; path=/; expires=Tue, 19 Jan 2038 03:14:07 GMT`;
window.location.reload();
}
active: app.data.locale === locale,
children: app.data.locales[locale],
icon: app.data.locale === locale ? 'check' : true,
onclick: () => {
if (app.session.user) {
app.session.user.savePreferences({locale}).then(() => window.location.reload());
} else {
document.cookie = `locale=${locale}; path=/; expires=Tue, 19 Jan 2038 03:14:07 GMT`;
window.location.reload();
}
}
}));
}
items.add('locale', SelectDropdown.component({
children: locales,
buttonClassName: 'Button Button--link'
children: locales,
buttonClassName: 'Button Button--link'
}), 20);
}