Skip to content
Snippets Groups Projects
Unverified Commit 86f29a8d authored by Bekerle, Patrizio's avatar Bekerle, Patrizio :fire:
Browse files

Remove obsolete no-brand attribute from AppShell

parent 4dae84dd
No related branches found
No related tags found
No related merge requests found
Pipeline #45011 passed
......@@ -30,9 +30,6 @@ npm i @dbp-toolkit/app-shell
- example `<dbp-app-shell matomo-site-id="456789"></dbp-app-shell>`
- `no-welcome-page` (optional): skips the welcome page and welcome page isn't visible in menu
- example `<dbp-app-shell no-welcome-page></dbp-app-shell>`
- `no-brand` (optional): disables the logo in the right upper corner of the header
- example `<dbp-app-shell no-brand></dbp-app-shell>`
### Emitted attributes
......
......@@ -68,7 +68,6 @@ export class AppShell extends ScopedElementsMixin(AdapterLitElement) {
this._attrObserver = new MutationObserver(this.onAttributeObserved);
this.noBrand = false;
this.auth = {};
}
......@@ -242,7 +241,6 @@ export class AppShell extends ScopedElementsMixin(AdapterLitElement) {
matomoUrl: { type: String, attribute: "matomo-url" },
matomoSiteId: { type: Number, attribute: "matomo-site-id" },
noWelcomePage: { type: Boolean, attribute: "no-welcome-page" },
noBrand: { type: Boolean, attribute: "no-brand" },
gitInfo: { type: String, attribute: "git-info" },
buildUrl: { type: String, attribute: "build-url" },
buildTime: { type: String, attribute: "build-time" },
......
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