Unfettered document loading
This commit is contained in:
parent
f14800445f
commit
827a6596c7
@ -177,14 +177,14 @@
|
|||||||
);
|
);
|
||||||
this.$watch(
|
this.$watch(
|
||||||
() => (this.client, this.selection, {}),
|
() => (this.client, this.selection, {}),
|
||||||
debounce(async function() {
|
async function() {
|
||||||
try {
|
try {
|
||||||
this.selection_text = (this.client) && (this.selection) ? await this.client.TIU_GET_RECORD_TEXT(this.selection) : null;
|
this.selection_text = (this.client) && (this.selection) ? await this.client.TIU_GET_RECORD_TEXT(this.selection) : null;
|
||||||
} catch(ex) {
|
} catch(ex) {
|
||||||
this.selection_text = null;
|
this.selection_text = null;
|
||||||
console.warn(ex);
|
console.warn(ex);
|
||||||
}
|
}
|
||||||
}, 500),
|
},
|
||||||
{ immediate: true }
|
{ immediate: true }
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user