Skip to content

Commit

Permalink
More
Browse files Browse the repository at this point in the history
  • Loading branch information
LucHeart committed Jul 26, 2024
1 parent 8102803 commit dd53cc9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/views/dashboard/admin/AdminRoot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export default {
this.$store.dispatch('setNewNav', [
{
routerLink: '/admin/online-devices',
html: '<i class="fas fa-search"></i>Online Devices'
html: '<i class="fas fa-search"></i>Online Hubs'
}
]);
}
Expand Down
4 changes: 2 additions & 2 deletions src/views/dashboard/devices/DevicesRoot.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</b-table>
</b-container>

<b-modal v-model="modal.edit" title="Edit Device" ok-title="Save" @ok="applyEdits">
<b-modal v-model="modal.edit" title="Edit Hub" ok-title="Save" @ok="applyEdits">
<loading v-if="modal.editLoading"></loading>
<div v-else>
<b-container style="padding: 0;">
Expand Down Expand Up @@ -240,7 +240,7 @@ export default {
const res = await apiCall.makeCall('GET', '1/devices/' + item.id);
if (res === undefined || res.status !== 200) {
toastr.error("Error while retrieving device details");
toastr.error("Error while retrieving hub details");
return;
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/dashboard/devices/Setup/SerialFlash.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default {
started: false,
finished: false,
progress: 0,
state: "Press flash to start flashing your device"
state: "Press flash to start flashing your hub"
},
text: ""
}
Expand Down
4 changes: 2 additions & 2 deletions src/views/dashboard/shockers/own/Own.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@
<b-form-input id="item-id" v-model="retrievedShocker.id" readonly/>
</b-form-group>

<b-form-group label="Device" label-for="item-device" label-class="mb-1">
<b-form-group label="Hub" label-for="item-device" label-class="mb-1">
<b-form-select id="item-device" :state="validationEditDevice" v-model="retrievedShocker.device" :options="deviceList" required/>
<b-form-invalid-feedback :state="validationEditDevice">
Select a device
Select a hub
</b-form-invalid-feedback>
</b-form-group>

Expand Down

0 comments on commit dd53cc9

Please sign in to comment.