|
2 | 2 | q-footer(:class="$q.dark.isActive ? 'bg-dark' : 'bg-white'" bordered) |
3 | 3 | q-bar(:class="$q.dark.isActive ? 'bg-dark' : 'bg-white text-black'") |
4 | 4 | a( |
5 | | - :href="'https://github.com/Libertech-FR/sesame-orchestrator/releases/tag/' + (orchestratorVersion?.currentVersion || '0.0.0')" |
6 | | - target="_blank" |
| 5 | + :href="orchestratorVersion?.currentVersion ? 'https://github.com/Libertech-FR/sesame-orchestrator/releases/tag/' + orchestratorVersion?.currentVersion : 'javascript:void(0)'" |
| 6 | + :target="orchestratorVersion?.currentVersion ? '_blank' : undefined" |
7 | 7 | rel="noopener noreferrer" |
8 | 8 | style="color: inherit; text-decoration: none;" |
9 | 9 | ) |
| 10 | + q-tooltip.text-body2( |
| 11 | + v-if="orchestratorVersion?.currentVersion" |
| 12 | + anchor="top middle" |
| 13 | + self="bottom middle" |
| 14 | + ) |
| 15 | + | Version d’Orchestrator actuellement installée : {{ orchestratorVersion?.currentVersion ? ('v' + orchestratorVersion?.currentVersion) : 'N/A' }}. |
| 16 | + br |
| 17 | + small.text-caption Cliquez pour ouvrir la page de version et consulter les notes de publication. |
10 | 18 | small.gt-xs Orchestrator |
11 | | - small(v-text="'v' + (orchestratorVersion?.currentVersion || '0.0.0')") |
12 | | - small.bold / |
| 19 | + small.text-grey-7(v-text="orchestratorVersion?.currentVersion ? ('v' + orchestratorVersion?.currentVersion) : 'N/A'") |
| 20 | + q-separator.q-mx-sm(vertical inset style="width: 2px;") |
13 | 21 | a( |
14 | | - :href="'https://github.com/Libertech-FR/sesame-daemon/releases/tag/' + (daemonVersion?.currentVersion || '0.0.0')" |
15 | | - target="_blank" |
| 22 | + :href="daemonVersion?.currentVersion ? 'https://github.com/Libertech-FR/sesame-daemon/releases/tag/' + daemonVersion?.currentVersion : 'javascript:void(0)'" |
| 23 | + :target="daemonVersion?.currentVersion ? '_blank' : undefined" |
16 | 24 | rel="noopener noreferrer" |
17 | 25 | style="color: inherit; text-decoration: none;" |
18 | 26 | ) |
| 27 | + q-tooltip.text-body2( |
| 28 | + v-if="daemonVersion?.currentVersion" |
| 29 | + anchor="top middle" |
| 30 | + self="bottom middle" |
| 31 | + ) |
| 32 | + | Version de Daemon actuellement installée : {{ daemonVersion?.currentVersion ? ('v' + daemonVersion?.currentVersion) : 'N/A' }}. |
| 33 | + br |
| 34 | + small.text-caption Cliquez pour ouvrir la page de version et consulter les notes de publication. |
19 | 35 | small.gt-xs Daemon |
20 | | - small(v-text="'v' + (daemonVersion?.currentVersion || '0.0.0')") |
21 | | - div.q-pr-xs |
| 36 | + small.text-grey-7(v-text="daemonVersion?.currentVersion ? ('v' + daemonVersion?.currentVersion) : 'N/A'") |
| 37 | + q-separator.q-mx-sm(v-if='orchestratorVersion?.updateAvailable || daemonVersion?.updateAvailable' vertical inset style="width: 2px;") |
22 | 38 | q-btn.q-px-xs( |
23 | 39 | v-show="orchestratorVersion?.updateAvailable" |
24 | 40 | flat stretch icon="mdi-alert-box" color="amber-9" |
25 | 41 | href="https://github.com/Libertech-FR/sesame-orchestrator/releases" target="_blank" |
26 | 42 | ) Orchestrator |
27 | 43 | q-tooltip.text-body2.bg-amber-9 |
28 | 44 | | MÀJ. disponible ( |
29 | | - span(v-text="orchestratorVersion?.lastVersion || '0.0.0'") |
| 45 | + span(v-text="orchestratorVersion?.lastVersion") |
30 | 46 | | ) |
31 | 47 | q-btn.q-px-xs( |
32 | 48 | v-show="daemonVersion?.updateAvailable" |
|
35 | 51 | ) Daemon |
36 | 52 | q-tooltip.text-body2.bg-amber-9 |
37 | 53 | | MÀJ. disponible ( |
38 | | - span(v-text="daemonVersion?.lastVersion || '0.0.0'") |
| 54 | + span(v-text="daemonVersion?.lastVersion") |
39 | 55 | | ) |
40 | 56 | q-space |
41 | 57 | sesame-core-help-buttons |
|
0 commit comments