Fixed Change Avatar. Improved Admin Panel: People columns order, selected tab background color.

Thanks to xet7 !
This commit is contained in:
Lauri Ojansivu 2026-01-14 00:38:56 +02:00
parent dcd8d80b9d
commit 07186e12a9
10 changed files with 169 additions and 99 deletions

View file

@ -0,0 +1,20 @@
Template.settingHeaderBar.helpers({
isSettingsActive() {
return FlowRouter.getRouteName() === 'setting' ? 'active' : '';
},
isPeopleActive() {
return FlowRouter.getRouteName() === 'people' ? 'active' : '';
},
isAdminReportsActive() {
return FlowRouter.getRouteName() === 'admin-reports' ? 'active' : '';
},
isAttachmentsActive() {
return FlowRouter.getRouteName() === 'attachments' ? 'active' : '';
},
isTranslationActive() {
return FlowRouter.getRouteName() === 'translation' ? 'active' : '';
},
isInformationActive() {
return FlowRouter.getRouteName() === 'information' ? 'active' : '';
},
});