mirror of
https://github.com/wekan/wekan.git
synced 2026-01-17 23:15:28 +01:00
Fixed Change Avatar. Improved Admin Panel: People columns order, selected tab background color.
Thanks to xet7 !
This commit is contained in:
parent
eca42f32bb
commit
e89f4d260c
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