forked from mirrors/homebox
fix(s): spelling mistakes, and external link handling on login page (#65)
* Fix spelling mistake Fix spelling mistake, changed 'Mode Number' to 'Model Number' * Update external links on login page Updated the external links on the login page for Discord and application docs to open in new tabs/windows. * Fix spelling mistake on items page Fix spelling mistake, changed second incorrect occurrence of 'Labels' to 'Locations'
This commit is contained in:
parent
0f51e51f63
commit
b87cdc8164
3 changed files with 4 additions and 4 deletions
|
@ -147,10 +147,10 @@
|
|||
<a href="https://twitter.com/haybytes" class="tooltip" data-tip="Follow The Developer" target="_blank">
|
||||
<Icon name="mdi-twitter" class="h-8 w-8" />
|
||||
</a>
|
||||
<a href="https://discord.gg/tuncmNrE4z" class="tooltip" data-tip="Join The Discord">
|
||||
<a href="https://discord.gg/tuncmNrE4z" class="tooltip" data-tip="Join The Discord" target="_blank">
|
||||
<Icon name="mdi-discord" class="h-8 w-8" />
|
||||
</a>
|
||||
<a href="https://hay-kot.github.io/homebox/" class="tooltip" data-tip="Read The Docs">
|
||||
<a href="https://hay-kot.github.io/homebox/" class="tooltip" data-tip="Read The Docs" target="_blank">
|
||||
<Icon name="mdi-folder" class="h-8 w-8" />
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -76,7 +76,7 @@
|
|||
text: item.value?.serialNumber,
|
||||
},
|
||||
{
|
||||
name: "Mode Number",
|
||||
name: "Model Number",
|
||||
text: item.value?.modelNumber,
|
||||
},
|
||||
{
|
||||
|
|
|
@ -75,7 +75,7 @@
|
|||
</template>
|
||||
<div class="px-4 pb-4">
|
||||
<FormMultiselect v-model="selectedLabels" label="Labels" :items="labels ?? []" />
|
||||
<FormMultiselect v-model="selectedLocations" label="Labels" :items="locations ?? []" />
|
||||
<FormMultiselect v-model="selectedLocations" label="Locations" :items="locations ?? []" />
|
||||
</div>
|
||||
</BaseCard>
|
||||
<section class="mt-10">
|
||||
|
|
Loading…
Reference in a new issue