Fixed lite-mode regression
This commit is contained in:
parent
2b8df04e4d
commit
86e8c5d749
1 changed files with 8 additions and 1 deletions
|
|
@ -2,7 +2,8 @@
|
||||||
<!-- Grid managing tab content -->
|
<!-- Grid managing tab content -->
|
||||||
<div uk-grid class="uk-height-1-1 uk-margin-remove uk-padding-remove">
|
<div uk-grid class="uk-height-1-1 uk-margin-remove uk-padding-remove">
|
||||||
<div class="view-component uk-width-expand">
|
<div class="view-component uk-width-expand">
|
||||||
<connectDisplay />
|
<connectDisplayLite v-if="liteMode" />
|
||||||
|
<connectDisplay v-else />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
@ -15,6 +16,12 @@ export default {
|
||||||
|
|
||||||
components: {
|
components: {
|
||||||
connectDisplay
|
connectDisplay
|
||||||
|
},
|
||||||
|
|
||||||
|
data: function() {
|
||||||
|
return {
|
||||||
|
liteMode: process.env.VUE_APP_LITEMODE == "true" ? true : false
|
||||||
|
};
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue