Skip to content

Commit

Permalink
* changing tile push option now applied immediately without page re…
Browse files Browse the repository at this point in the history
…fresh (#310)
  • Loading branch information
agnybida committed Aug 19, 2024
1 parent db11c45 commit e841e4f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "deep-see-web",
"version": "4.0.5",
"version": "4.0.6",
"scripts": {
"ng": "ng",
"start": "ng serve --proxy-config=proxy.conf.samples-bi.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -941,6 +941,8 @@ export class DashboardScreenComponent extends DashboardEditingClass implements O
this.subSettingsChanged = this.ss.onSettingsChanged.subscribe(settings => {
this.tilesOptions.maxCols = settings.colCount || DEFAULT_COL_COUNT;
this.tilesOptions.minCols = this.tilesOptions.maxCols;
this.tilesOptions.pushItems = !settings.isTilePushDisabled;
this.tilesOptions.disablePushOnResize = !!settings.isTilePushDisabled;
if (this.gridster) {
this.gridster.optionsChanged();
setTimeout(() => {
Expand Down
3 changes: 3 additions & 0 deletions src/changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#### 4.0.6
* changing `tile push` option now applied immediately without page refresh (#310)

#### 4.0.5
* added KPI drillthrough support for charts (analytics/#421)
* fixed issue with sharing dashboard/widgets using base64 (analytics/#270)
Expand Down

0 comments on commit e841e4f

Please sign in to comment.