From 1f848bb51d591ed917a37b985b76b6fbd91ea77c Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Thu, 22 Sep 2022 15:50:00 +0530 Subject: [PATCH] fix(i18n): rtl for ar Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- packages/nc-gui/components/general/SocialCard.vue | 2 +- packages/nc-gui/components/general/language/Menu.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/nc-gui/components/general/SocialCard.vue b/packages/nc-gui/components/general/SocialCard.vue index 21b84d274e..da7872ba27 100644 --- a/packages/nc-gui/components/general/SocialCard.vue +++ b/packages/nc-gui/components/general/SocialCard.vue @@ -3,7 +3,7 @@ import { enumColor as colors } from '#imports' const { lang: currentLang } = useGlobal() -const isRtlLang = $computed(() => ['fa'].includes(currentLang.value)) +const isRtlLang = $computed(() => ['fa', 'ar'].includes(currentLang.value))