Skip to content

Commit

Permalink
major frontend refactoring, useApi to consolidate REST calls (#74)
Browse files Browse the repository at this point in the history
* major frontend refactoring, useApi to consolidate REST calls

* copy paste fix

* add a dev mode test
  • Loading branch information
wisskirchenj authored Feb 18, 2024
1 parent e98db6a commit 9338344
Show file tree
Hide file tree
Showing 22 changed files with 270 additions and 345 deletions.
168 changes: 84 additions & 84 deletions frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@
"@mdi/font": "7.4.47",
"axios": "^1.6.7",
"roboto-fontface": "*",
"vue": "^3.4.15",
"vue": "^3.4.19",
"vue-router": "^4.2.5",
"vuetify": "^3.5.2"
"vuetify": "^3.5.4"
},
"devDependencies": {
"@babel/types": "^7.23.9",
"@types/node": "^20.11.16",
"@vitejs/plugin-vue": "^5.0.3",
"@types/node": "^20.11.19",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.0.0",
"eslint-plugin-vue": "^9.21.1",
"sass": "^1.70.0",
"sass": "^1.71.0",
"typescript": "^5.3.3",
"unplugin-fonts": "^1.0.3",
"vite": "^5.0.12",
"vite": "^5.1.3",
"vite-plugin-vuetify": "^2.0.1",
"vue-tsc": "^1.8.27"
}
Expand Down
1 change: 0 additions & 1 deletion frontend/src/feature/cards/components/CardItemScroller.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ watch(() => props.titleFilter, async (newVal, oldVal) => {
});
const openCard = (id: string) => {
console.log("Opening card with id: " + id);
router.push(`/card/${props.categoryId}/${id}`);
}
</script>
Loading

0 comments on commit 9338344

Please sign in to comment.