diff --git a/htdocs/RoutePatientDocuments.vue b/htdocs/RoutePatientDocuments.vue index 9840d43..5799ab2 100644 --- a/htdocs/RoutePatientDocuments.vue +++ b/htdocs/RoutePatientDocuments.vue @@ -177,14 +177,14 @@ ); this.$watch( () => (this.client, this.selection, {}), - debounce(async function() { + async function() { try { this.selection_text = (this.client) && (this.selection) ? await this.client.TIU_GET_RECORD_TEXT(this.selection) : null; } catch(ex) { this.selection_text = null; console.warn(ex); } - }, 500), + }, { immediate: true } ); },