Hide menu button to managers on small screens

This menu isn't rendered in this case, so the "menu" button to toggle it
did nothing.
This commit is contained in:
Javi Martín
2023-01-12 16:42:43 +01:00
parent cb2aebe2c8
commit e000bd9a61
3 changed files with 17 additions and 9 deletions

View File

@@ -25,4 +25,8 @@ class Layout::AdminHeaderComponent < ApplicationComponent
namespaced_root_path
end
end
def show_account_menu?
show_admin_menu?(user) || namespace != "management"
end
end