@itfin/components 1.3.81 → 1.3.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -159,7 +159,8 @@ class itfTable2 extends Vue {
|
|
|
159
159
|
if (!this.stateName) {
|
|
160
160
|
return;
|
|
161
161
|
}
|
|
162
|
-
|
|
162
|
+
const columns = this.state.columns.map((s) => ({ property: s.property, width: s.width, index: s.index }));
|
|
163
|
+
localStorage.setItem(this.stateKey, JSON.stringify({ columns }));
|
|
163
164
|
}
|
|
164
165
|
|
|
165
166
|
mounted() {
|