Hide connect tab in lite mode
This commit is contained in:
parent
e6b88dd40d
commit
5a0370a7b7
1 changed files with 3 additions and 5 deletions
|
|
@ -10,6 +10,7 @@
|
||||||
class="uk-flex uk-flex-column uk-padding-remove uk-width-auto uk-height-1-1 uk-text-center"
|
class="uk-flex uk-flex-column uk-padding-remove uk-width-auto uk-height-1-1 uk-text-center"
|
||||||
>
|
>
|
||||||
<tabIcon
|
<tabIcon
|
||||||
|
v-show="!liteMode"
|
||||||
id="connect"
|
id="connect"
|
||||||
:require-connection="false"
|
:require-connection="false"
|
||||||
:current-tab="currentTab"
|
:current-tab="currentTab"
|
||||||
|
|
@ -153,9 +154,6 @@ import settingsContent from "./tabContentComponents/settingsContent.vue";
|
||||||
import galleryContent from "./tabContentComponents/galleryContent.vue";
|
import galleryContent from "./tabContentComponents/galleryContent.vue";
|
||||||
import extensionContent from "./tabContentComponents/extensionContent.vue";
|
import extensionContent from "./tabContentComponents/extensionContent.vue";
|
||||||
|
|
||||||
// Import plugin components
|
|
||||||
import JsonForm from "./pluginComponents/JsonForm";
|
|
||||||
|
|
||||||
// Export main app
|
// Export main app
|
||||||
export default {
|
export default {
|
||||||
name: "PanelLeft",
|
name: "PanelLeft",
|
||||||
|
|
@ -163,7 +161,6 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
tabIcon,
|
tabIcon,
|
||||||
tabContent,
|
tabContent,
|
||||||
JsonForm,
|
|
||||||
connectContent,
|
connectContent,
|
||||||
navigateContent,
|
navigateContent,
|
||||||
captureContent,
|
captureContent,
|
||||||
|
|
@ -176,7 +173,8 @@ export default {
|
||||||
return {
|
return {
|
||||||
plugins: [],
|
plugins: [],
|
||||||
currentTab: "connect",
|
currentTab: "connect",
|
||||||
unwatchStoreFunction: null
|
unwatchStoreFunction: null,
|
||||||
|
liteMode: process.env.VUE_APP_LITEMODE == "true" ? true : false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue