Skip to content

Commit

Permalink
fix(chore): bump dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
con-cis committed Jul 27, 2024
1 parent 109a1c2 commit 80233a1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,26 +38,26 @@
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@mdi/font": "^7.4.47",
"@rushstack/eslint-patch": "^1.10.3",
"@types/node": "^20.14.11",
"@rushstack/eslint-patch": "^1.10.4",
"@types/node": "^20.14.12",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@vitejs/plugin-vue": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@vitejs/plugin-vue": "^5.1.1",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"electron": "^31.2.1",
"electron": "^31.3.0",
"electron-builder": "^24.13.3",
"electron-vite": "^2.3.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"less": "^4.2.0",
"prettier": "^3.3.3",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.3",
"vue": "^3.4.33",
"vue-tsc": "^2.0.26"
"vitest": "^2.0.4",
"vue": "^3.4.34",
"vue-tsc": "^2.0.29"
},
"license": "MIT",
"keywords": [
Expand Down
3 changes: 2 additions & 1 deletion src/renderer/src/components/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,13 +203,14 @@ onMounted(fetchConfig);
:key="'c-exp-' + colIndex"
>
<td v-if="column.key !== 'name'">
{{ destination[column.key || "null"] }}
{{ (destination as any)[column.key || "null"] }}
</td>
</template>
</tr>
</template>
<!-- annotation dialog -->
<!-- check this out: https://vuetifyjs.com/en/components/data-tables/basics/#crud-actions -->
<!-- eslint-disable-next-line vue/valid-v-slot -->
<template #item.annotation="{ item }">
<v-icon
size="small"
Expand Down

0 comments on commit 80233a1

Please sign in to comment.