+
+ Describe your new Remote Instance here. +
+Remote Instances are managed using the FlowFuse Device Agent. The agent will need to be setup on the hardware where you want your Remote Instance to run.
@@ -314,7 +317,7 @@ import { ClockIcon } from '@heroicons/vue/outline' import { PlusSmIcon } from '@heroicons/vue/solid' import { markRaw } from 'vue' -import { mapState } from 'vuex' +import { mapGetters, mapState } from 'vuex' import deviceApi from '../api/devices.js' import teamApi from '../api/team.js' @@ -402,6 +405,8 @@ export default { }, computed: { ...mapState('account', ['team', 'teamMembership']), + ...mapState('ux', ['tours']), + ...mapGetters('account', ['featuresCheck']), columns () { const columns = [ { label: 'Remote Instance', key: 'name', sortable: !this.moreThanOnePage, component: { is: markRaw(DeviceLink) } }, diff --git a/frontend/src/components/NavItem.vue b/frontend/src/components/NavItem.vue index 55cf81e893..8af10fc7bf 100644 --- a/frontend/src/components/NavItem.vue +++ b/frontend/src/components/NavItem.vue @@ -7,6 +7,9 @@