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 } } }