Fix group routing

This commit is contained in:
ThatOneCalculator 2022-09-13 16:57:09 -07:00
parent 1d3f1306b6
commit ac7574aff3
3 changed files with 16 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "calckey", "name": "calckey",
"version": "12.119.0-calc-rc.5", "version": "12.119.0-calc-rc.6",
"codename": "aqua", "codename": "aqua",
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -143,4 +143,18 @@ export default defineComponent({
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
._card {
margin-bottom: 1rem;
._title {
font-size: 1.2rem;
font-weight: bold;
}
._content {
margin: 1rem 0;
}
._footer {
display: flex;
justify-content: flex-end;
}
}
</style> </style>

View File

@ -458,7 +458,7 @@ export const routes = [{
loginRequired: true, loginRequired: true,
}, { }, {
path: '/my/groups/:groupId', path: '/my/groups/:groupId',
component: page(() => import('./pages/my-groups/index.vue')), component: page(() => import('./pages/my-groups/group.vue')),
loginRequired: true, loginRequired: true,
}, { }, {
path: '/my/antennas/create', path: '/my/antennas/create',