mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-22 06:23:34 -07:00
fix trying to cast id as number
This commit is contained in:
parent
4c95fe851a
commit
073751dc3b
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@
|
||||||
variant="text"
|
variant="text"
|
||||||
@click.stop="
|
@click.stop="
|
||||||
confirmDialog = true;
|
confirmDialog = true;
|
||||||
deleteTarget = +item.id;
|
deleteTarget = item.id;
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<v-icon>
|
<v-icon>
|
||||||
|
@ -114,7 +114,7 @@ export default defineNuxtComponent({
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
createDialog: false,
|
createDialog: false,
|
||||||
confirmDialog: false,
|
confirmDialog: false,
|
||||||
deleteTarget: 0,
|
deleteTarget: "",
|
||||||
search: "",
|
search: "",
|
||||||
headers: [
|
headers: [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue