diff --git a/web/client/plugins/Home.jsx b/web/client/plugins/Home.jsx index 361439cdbc..9bb9583a52 100644 --- a/web/client/plugins/Home.jsx +++ b/web/client/plugins/Home.jsx @@ -44,6 +44,20 @@ const HomeConnected = connect((state) => ({ * It can be rendered in {@link #plugins.OmniBar|OmniBar}. * Supports as containers at lower priority {@link #plugins.Toolbar|Toolbar}. * You can configure the home target path globally by setting `miscSettings.homePath` in `localConfig.json`. By default it redirects to `"#/"`; + * + * If you want to show this plugin with BurgerMenu (so without Sidebar), apply the following configuration: + * + * ```javascript + * { + * "cfg": {}, + * "override": { + * "OmniBar": { + * "priority": 5 + * } + * } + * } + * ``` + * * @name Home * @class * @memberof plugins diff --git a/web/client/plugins/Login.jsx b/web/client/plugins/Login.jsx index 9d97a0acd5..aff7e10c2e 100644 --- a/web/client/plugins/Login.jsx +++ b/web/client/plugins/Login.jsx @@ -37,6 +37,20 @@ import { isAdminUserSelector } from '../selectors/security'; * } * ``` * By default, if not set, it will use classic `{"type": "basic", "provider": "geostore"}` setup for GeoStore. + * + * If you want to show this plugin with BurgerMenu (so without Sidebar), apply the following configuration: + * + * ```javascript + * { + * "cfg": {}, + * "override": { + * "OmniBar": { + * "priority": 5 + * } + * } + * } + * ``` + * * @class Login * @memberof plugins * @static