Skip to content

Commit

Permalink
Home and Login Plugins do not appear on the page if the Burger Menu i…
Browse files Browse the repository at this point in the history
…s activated in the context in 2024.01.01 version #10503 (#10590)
  • Loading branch information
rowheat02 authored Oct 4, 2024
1 parent 52f0248 commit 362bf15
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
14 changes: 14 additions & 0 deletions web/client/plugins/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 14 additions & 0 deletions web/client/plugins/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 362bf15

Please sign in to comment.