Skip to content

Commit

Permalink
frontend: add NotSafeOverlay to some views
Browse files Browse the repository at this point in the history
  • Loading branch information
Williangalvani committed Sep 17, 2024
1 parent cca746e commit db8c947
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/frontend/src/views/Autopilot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
</v-row>
<br>
</div>
<not-safe-overlay />
<v-expansion-panels>
<v-expansion-panel>
<v-expansion-panel-header>
Expand Down Expand Up @@ -129,6 +130,7 @@ export default Vue.extend({
BoardChangeDialog,
FirmwareManager,
AutopilotSerialConfiguration,
NotSafeOverlay,
},
data() {
return {
Expand Down
1 change: 1 addition & 0 deletions core/frontend/src/views/ExtensionManagerView.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<template>
<v-container fluid>
<not-safe-overlay />
<pull-progress
:progress="pull_output"
:show="show_pull_output"
Expand Down
2 changes: 2 additions & 0 deletions core/frontend/src/views/NetworkTestView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<v-card
height="100%"
>
<not-safe-overlay />
<v-tabs
v-model="page_selected"
centered
Expand Down Expand Up @@ -46,6 +47,7 @@ export default Vue.extend({
components: {
InternetSpeedTest,
NetworkSpeedTest,
NotSafeOverlay,
},
data() {
return {
Expand Down
2 changes: 2 additions & 0 deletions core/frontend/src/views/VersionChooser.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<template>
<v-container>
<not-safe-overlay />
<version-chooser />
</v-container>
</template>
Expand All @@ -13,6 +14,7 @@ export default Vue.extend({
name: 'VersionChooserView',
components: {
VersionChooser,
NotSafeOverlay,
},
})
</script>

0 comments on commit db8c947

Please sign in to comment.