From 827a6596c7abe1faff36a927eb0167f53c1e7616 Mon Sep 17 00:00:00 2001 From: inportb Date: Tue, 16 May 2023 23:21:32 -0400 Subject: [PATCH] Unfettered document loading --- htdocs/RoutePatientDocuments.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } ); },