From 3dfbddda339855eedd7f0773c0d184d72c1aba2d Mon Sep 17 00:00:00 2001 From: advplyr Date: Fri, 30 Aug 2024 17:16:46 -0500 Subject: [PATCH] Fix loading indicator please wait translation --- client/components/ui/LoadingIndicator.vue | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/client/components/ui/LoadingIndicator.vue b/client/components/ui/LoadingIndicator.vue index ad7bb9ef9..d984bf35e 100644 --- a/client/components/ui/LoadingIndicator.vue +++ b/client/components/ui/LoadingIndicator.vue @@ -7,7 +7,7 @@
-
{{ text }}
+
{{ message }}
@@ -17,8 +17,12 @@ export default { props: { text: { type: String, - //default: this.$strings.MessagePleaseWait - default: 'Please wait...' + default: null + } + }, + computed: { + message() { + return this.text || this.$strings.MessagePleaseWait } } }