Commit b2d1f01eeecfd54db07ae26b21cd738db36de5a0

Authored by Igor Kulikov
Committed by GitHub
2 parents 72cfe8e4 fbdb1c22

Merge pull request #5459 from vvlladd28/bug/show-toast/fullscreen-dashboard

[3.3.2] UI: Fixed display toast in fullscreen dashboard mode
... ... @@ -15,7 +15,7 @@
15 15 limitations under the License.
16 16
17 17 -->
18   -<div class="tb-dashboard-page mat-content" [ngClass]="{'mobile-app': isMobileApp && !isEdit}" tb-toast toastTarget="dashboardRoot"
  18 +<div class="tb-dashboard-page mat-content" [ngClass]="{'mobile-app': isMobileApp && !isEdit}"
19 19 fxFlex tb-fullscreen [fullscreen]="widgetEditMode || iframeMode || forceFullscreen || isFullscreen">
20 20 <tb-hotkeys-cheatsheet #cheatSheetComponent></tb-hotkeys-cheatsheet>
21 21 <section class="tb-dashboard-toolbar"
... ... @@ -139,6 +139,7 @@
139 139 </tb-dashboard-toolbar>
140 140 </section>
141 141 <section class="tb-dashboard-container tb-absolute-fill"
  142 + tb-toast toastTarget="dashboardRoot"
142 143 #dashboardContainer
143 144 [ngClass]="{ 'is-fullscreen': forceFullscreen,
144 145 'tb-dashboard-toolbar-opened': toolbarOpened,
... ...