fix(notification): Fixes type errors in the notification component.
- Adds a type assertion to the `variant` property to resolve type mismatch issues. `chore`: Ignores files generated by Tauri. - Adds the `/src-tauri/gen/` directory to the `.gitignore` file
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -59,3 +59,4 @@ coverage/
|
|||||||
*.lcov
|
*.lcov
|
||||||
.junit/
|
.junit/
|
||||||
/cores/
|
/cores/
|
||||||
|
/src-tauri/gen/
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
v-model="visible[item.id]"
|
v-model="visible[item.id]"
|
||||||
:timeout="item.timeout"
|
:timeout="item.timeout"
|
||||||
:color="item.color"
|
:color="item.color"
|
||||||
:variant="item.variant"
|
:variant="item.variant as any"
|
||||||
top
|
top
|
||||||
right
|
right
|
||||||
:style="{
|
:style="{
|
||||||
|
|||||||
Reference in New Issue
Block a user