mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 05:07:52 +00:00
[LAD Tables] Persist view modified configuration (#6637)
* chore: bump version to `2.2.2` (#6615) * persisting lad configuration in the view when it changes --------- Co-authored-by: Shefali Joshi <simplyrender@gmail.com>
This commit is contained in:
parent
1bbc3789ec
commit
fe677fa359
@ -226,7 +226,10 @@ export default {
|
||||
};
|
||||
},
|
||||
toggleFixedLayout() {
|
||||
this.configuration.isFixedLayout = !this.configuration.isFixedLayout;
|
||||
const config = structuredClone(this.configuration);
|
||||
|
||||
config.isFixedLayout = !this.configuration.isFixedLayout;
|
||||
this.ladTableConfiguration.updateConfiguration(config);
|
||||
},
|
||||
initializeViewActions() {
|
||||
if (this.configuration.isFixedLayout) {
|
||||
|
Loading…
Reference in New Issue
Block a user