mirror of
https://github.com/nasa/openmct.git
synced 2025-05-21 01:37:38 +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() {
|
toggleFixedLayout() {
|
||||||
this.configuration.isFixedLayout = !this.configuration.isFixedLayout;
|
const config = structuredClone(this.configuration);
|
||||||
|
|
||||||
|
config.isFixedLayout = !this.configuration.isFixedLayout;
|
||||||
|
this.ladTableConfiguration.updateConfiguration(config);
|
||||||
},
|
},
|
||||||
initializeViewActions() {
|
initializeViewActions() {
|
||||||
if (this.configuration.isFixedLayout) {
|
if (this.configuration.isFixedLayout) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user