@itfin/components 1.2.109 → 1.2.110
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
|
@@ -189,7 +189,11 @@ class itfPropertiesList extends Vue {
|
|
|
189
189
|
this.$nextTick(() => {
|
|
190
190
|
setTimeout(() => {
|
|
191
191
|
if (this.$refs.properties && this.$refs.properties[list.length - 1]) {
|
|
192
|
-
|
|
192
|
+
try {
|
|
193
|
+
this.$refs.properties[list.length - 1].showEditMenu();
|
|
194
|
+
} catch (e) {
|
|
195
|
+
// ignore
|
|
196
|
+
}
|
|
193
197
|
}
|
|
194
198
|
}, 10);
|
|
195
199
|
});
|