Skip to content

Commit

Permalink
fixed bug with dropdown filter
Browse files Browse the repository at this point in the history
  • Loading branch information
rickmcgeer committed Oct 1, 2023
1 parent b52251a commit e4ef85e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
},
"lively": {
"projectDependencies": [],
"boundLivelyVersion": "91085d41beb0c14afb52ecd2435cf64ab75b09cc"
"boundLivelyVersion": "4019eb8763648fe55f6bbb9f3f6d3ca9fddcd413",
"canUsePages": true
}
}
2 changes: 2 additions & 0 deletions publication/dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ export default class PublishedDashboard extends DashboardCommon {
// storedForm: an object created by _perpareSerialization

async _restoreFromSaved (storedForm = this.storedForm/* Now as an object, not a JSON string */) {
debugger;
await super._restoreFromSaved(storedForm);
this._repositionAfterRestore_();
await this.drawAllCharts();
Expand Down Expand Up @@ -159,3 +160,4 @@ export default class PublishedDashboard extends DashboardCommon {

// this.loadTestDashboard('drilldown-test')
}

4 changes: 2 additions & 2 deletions studio/filters.cp.js
Original file line number Diff line number Diff line change
Expand Up @@ -1163,8 +1163,8 @@ export class SelectFilterMorph extends Morph {

get dataManagerFilter () {
const valueField = this.valueList.selection;
const valueValue = this.isString ? `"${valueField}"` : valueField;
return { operator: 'IN_LIST', column: this.columnName, values: [valueValue] };
// const valueValue = this.isString ? `"${valueField}"` : valueField;
return { operator: 'IN_LIST', column: this.columnName, values: [valueField] };
}

/**
Expand Down

0 comments on commit e4ef85e

Please sign in to comment.