mirror of
https://github.com/wekan/wekan.git
synced 2026-01-16 14:35:29 +01:00
Fixed Change Avatar. Improved Admin Panel: People columns order, selected tab background color.
Thanks to xet7 !
This commit is contained in:
parent
dcd8d80b9d
commit
07186e12a9
10 changed files with 169 additions and 99 deletions
20
client/components/settings/settingHeader.js
Normal file
20
client/components/settings/settingHeader.js
Normal 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' : '';
|
||||
},
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue