From 1480c0496bd790b4530b98cf9c13bf8e80bbc48c Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Mon, 28 Aug 2017 13:21:52 -0400 Subject: [PATCH] fix: quotes consistency --- server/views/pages/view.pug | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/views/pages/view.pug b/server/views/pages/view.pug index fdbf3e02..773f0b66 100644 --- a/server/views/pages/view.pug +++ b/server/views/pages/view.pug @@ -15,7 +15,7 @@ block rootNavRight a.button.is-outlined(v-on:click='$store.dispatch("modalMovePage/open")') i.nc-icon-outline.arrows-1_shuffle-98 span= t('nav.move') - if appconfig.theme.viewSource === "all" || rights.write && appconfig.theme.viewSource === "write" + if appconfig.theme.viewSource === 'all' || (rights.write && appconfig.theme.viewSource === 'write') a.button.is-outlined(href='/source/' + pageData.meta.path) i.nc-icon-outline.education_paper span= t('nav.source')