Skip to content

Commit

Permalink
Fixes to the Tools page (#154)
Browse files Browse the repository at this point in the history
* Correct the description of the import feature on the tools page.

* Fix page title on Tools page.
  • Loading branch information
rpavlik authored Aug 2, 2024
1 parent 1221952 commit 0bcb155
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions frontend/pages/tools.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@
<div class="border-t px-6 pb-3 border-gray-300 divide-gray-300 divide-y">
<DetailAction @action="modals.import = true">
<template #title>Import Inventory</template>
Imports the standard CSV format for Homebox. This will <b>not</b> overwrite any existing items in your
inventory. It will only add new items.
Imports the standard CSV format for Homebox. Without an <code>HB.import_ref</code> column, this will
<b>not</b> overwrite any existing items in your inventory, only add new items. Rows with an
<code>HB.import_ref</code> column are merged into existing items with the same import_ref, if one exists.
</DetailAction>
<DetailAction @action="getExportCSV()">
<template #title>Export Inventory</template>
Expand Down Expand Up @@ -104,7 +105,7 @@
middleware: ["auth"],
});
useHead({
title: "Homebox | Profile",
title: "Homebox | Tools",
});
const modals = ref({
Expand Down

0 comments on commit 0bcb155

Please sign in to comment.