Sfoglia il codice sorgente

Add bubble info page on end bubble server's WebUI

pull/8/head
Kristijan Mitrovic 4 anni fa
parent
commit
5c44c12cc4
2 ha cambiato i file con 7 aggiunte e 1 eliminazioni
  1. +6
    -0
      src/_store/system.module.js
  2. +1
    -1
      src/account/NetworkPage.vue

+ 6
- 0
src/_store/system.module.js Vedi File

@@ -166,6 +166,12 @@ const getters = {
index: 1
});
} else {
dashApps.push({
href: '/bubble/' + configs.networkUuid,
title: messages.label_menu_network,
icon: messages.label_menu_networks_icon,
index: 1
});
dashApps.push({
href: '/devices',
title: messages.label_menu_devices,


+ 1
- 1
src/account/NetworkPage.vue Vedi File

@@ -96,7 +96,7 @@
<!-- todo: add button to restart network in restore mode -->
</div>

<div v-if="network.state === 'running' || network.state === 'starting' || network.state === 'stopped' || network.state === 'error_stopping'">
<div v-if="configs.sageLauncher && (network.state === 'running' || network.state === 'starting' || network.state === 'stopped' || network.state === 'error_stopping')">
<div class="text-danger"><h4>{{messages.title_network_danger_zone}}</h4></div>
<div v-if="errors.has('node')" class="invalid-feedback d-block">{{ errors.first('node') }}</div>
<div v-if="errors.has('accountPlan')" class="invalid-feedback d-block">{{ errors.first('accountPlan') }}</div>


Caricamento…
Annulla
Salva