From a3d64bf81b9bd4e68f9eff770434547ad45e1ac5 Mon Sep 17 00:00:00 2001 From: Jo Vuit <jo.vuitton@gmail.com> Date: Fri, 1 Mar 2019 12:58:57 +0100 Subject: [PATCH] Fixed broken app by deleting double translate-context parameters --- front/src/components/common/EmptyState.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/components/common/EmptyState.vue b/front/src/components/common/EmptyState.vue index 8b911cec..79067b8e 100644 --- a/front/src/components/common/EmptyState.vue +++ b/front/src/components/common/EmptyState.vue @@ -5,7 +5,7 @@ <slot name="title"> <i class="search icon"></i> - <translate :translate-context="'Content/*/Paragraph'" :translate-context="'Content/*/Paragraph'"> + <translate :translate-context="'Content/*/Paragraph'"> No results were found. </translate> </slot> @@ -14,7 +14,7 @@ <div class="inline"> <slot></slot> <button v-if="refresh" class="ui button" @click="$emit('refresh')"> - <translate :translate-context="'Content/*/Button.Label/Short, Verb'" :translate-context="'Content/Button/Label/Verb'"> + <translate :translate-context="'Content/*/Button.Label/Short, Verb'"> Refresh </translate></button> </button> -- GitLab