Browse Source

Merge branch 'lts-4.2' into lwm2m_fix_bug_testFirmwareUpdateByObject5_Ok

pull/14950/head
nickAS21 6 months ago
parent
commit
73f5f4ccab
  1. 2
      msa/pom.xml
  2. 2
      ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts

2
msa/pom.xml

@ -134,7 +134,7 @@
</activation>
<properties>
<docker.lts.tag>4.2.1-latest</docker.lts.tag>
<docker.skip.latest.tag>false</docker.skip.latest.tag>
<docker.skip.latest.tag>true</docker.skip.latest.tag>
</properties>
<build>
<plugins>

2
ui-ngx/src/app/modules/home/components/dashboard-page/dashboard-page.component.ts

@ -650,7 +650,7 @@ export class DashboardPageComponent extends PageComponent implements IDashboardC
private hideToolbarSetting(): boolean {
if (isDefined(this.dashboard.configuration?.settings?.hideToolbar)) {
const canApplyHideSetting = !this.forceFullscreen || this.isMobileApp;
const canApplyHideSetting = !this.forceFullscreen || this.isMobileApp || this.isPublicUser();
return this.dashboard.configuration.settings.hideToolbar && canApplyHideSetting;
} else {
return false;

Loading…
Cancel
Save