move isDev to getter

This commit is contained in:
Gamebrary 2021-09-07 22:43:40 -07:00
parent 5843574afe
commit 624e61ec19
2 changed files with 4 additions and 7 deletions

View file

@ -52,7 +52,7 @@
</b-dropdown-item> </b-dropdown-item>
<b-dropdown-item <b-dropdown-item
v-if="dev" v-if="isDev"
v-for="{ name, title, icon } in betaFeatures" v-for="{ name, title, icon } in betaFeatures"
:key="name" :key="name"
:variant="name === routeName ? 'primary' : ''" :variant="name === routeName ? 'primary' : ''"
@ -159,12 +159,7 @@ export default {
computed: { computed: {
...mapState(['user', 'profile']), ...mapState(['user', 'profile']),
...mapGetters(['isRTL']), ...mapGetters(['isRTL', 'isDev']),
dev() {
// TODO: put in getter or util
return process.env.NODE_ENV === 'development';
},
routeName() { routeName() {
return this.$route.name; return this.$route.name;

View file

@ -23,6 +23,8 @@ export default {
// Arabic is the only ltr language supported at the moment // Arabic is the only ltr language supported at the moment
isRTL: ({ settings }) => settings && settings.language !== 'ar', isRTL: ({ settings }) => settings && settings.language !== 'ar',
isDev: () => process.env.NODE_ENV === 'development',
platformNames: (state) => { platformNames: (state) => {
const formattedPlatforms = {}; const formattedPlatforms = {};