Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 2024.02.xx] #10503 - Home and Login Plugins do not appear on the page if the Burger Menu is activated in the context in 2024.01.01 version #10503 #10590 #10649

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading