diff --git a/elebox/src-tauri/tauri.conf.json b/elebox/src-tauri/tauri.conf.json index 247e55e..88d12f3 100644 --- a/elebox/src-tauri/tauri.conf.json +++ b/elebox/src-tauri/tauri.conf.json @@ -20,7 +20,7 @@ "bundle": { "active": true, "targets": "all", - "identifier": "com.tauri.dev", + "identifier": "com.tauri.dev.elebox", "icon": [ "icons/32x32.png", "icons/128x128.png", diff --git a/elebox/src/components/PartDel.vue b/elebox/src/components/PartDel.vue index 4deaf69..6311f76 100644 --- a/elebox/src/components/PartDel.vue +++ b/elebox/src/components/PartDel.vue @@ -5,12 +5,12 @@ defineProps({ part: String }) -async function partDel(part: String) { +async function partDel(part: string) { console.debug(`Part delete: ${part}`); await invoke("part_del", { part }); } diff --git a/elebox/src/components/PartList.vue b/elebox/src/components/PartList.vue index 016ed5d..30d86e0 100644 --- a/elebox/src/components/PartList.vue +++ b/elebox/src/components/PartList.vue @@ -1,14 +1,22 @@ diff --git a/elebox/src/components/TypeNew.vue b/elebox/src/components/TypeNew.vue index 497c500..e3e098b 100644 --- a/elebox/src/components/TypeNew.vue +++ b/elebox/src/components/TypeNew.vue @@ -1,10 +1,17 @@