Skip to content
Snippets Groups Projects
Commit c0e354ee authored by Simon Genin (ges)'s avatar Simon Genin (ges)
Browse files

[FIX] web: company_menu always shown by default (in community)


Before: the company menu would disapear when the screen was smaller than
some threshold. It is expected in enterprise, but not in community as
it doesn't have the burger menu.

After: The menu is set to always be displayed. To remove it becomes
an enterprise reponsability.

closes odoo/odoo#78034

X-original-commit: 039e24ea
Related: odoo/enterprise#21535
Signed-off-by: default avatarAaron Bohy (aab) <aab@odoo.com>
Signed-off-by: default avatarSimon Genin (ges@odoo) <ges@odoo.com>
parent 2dce16e8
No related branches found
No related tags found
No related merge requests found
......@@ -40,11 +40,11 @@ export class SwitchCompanyMenu extends Component {
SwitchCompanyMenu.template = "web.SwitchCompanyMenu";
SwitchCompanyMenu.toggleDelay = 1000;
const systrayItem = {
export const systrayItem = {
Component: SwitchCompanyMenu,
isDisplayed(env) {
const { availableCompanies } = env.services.company;
return Object.keys(availableCompanies).length > 1 && !env.isSmall;
return Object.keys(availableCompanies).length > 1;
},
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment