Skip to content
Snippets Groups Projects
Unverified Commit 3762cdc8 authored by sobadon's avatar sobadon Committed by GitHub
Browse files

グループの編集画面をウィンドウで開けないバグを修正 (#7100)

parent b224760a
No related branches found
No related tags found
No related merge requests found
......@@ -45,6 +45,13 @@ export default defineComponent({
MkButton
},
props: {
groupId: {
type: String,
required: true,
},
},
data() {
return {
INFO: computed(() => this.group ? {
......@@ -58,7 +65,7 @@ export default defineComponent({
},
watch: {
$route: 'fetch'
groupId: 'fetch',
},
created() {
......@@ -69,7 +76,7 @@ export default defineComponent({
fetch() {
Progress.start();
os.api('users/groups/show', {
groupId: this.$route.params.group
groupId: this.groupId
}).then(group => {
this.group = group;
os.api('users/show', {
......
......@@ -55,7 +55,7 @@ export const router = createRouter({
{ path: '/my/lists', component: page('my-lists/index') },
{ path: '/my/lists/:list', component: page('my-lists/list') },
{ path: '/my/groups', component: page('my-groups/index') },
{ path: '/my/groups/:group', component: page('my-groups/group') },
{ path: '/my/groups/:group', component: page('my-groups/group'), props: route => ({ groupId: route.params.group }) },
{ path: '/my/antennas', component: page('my-antennas/index') },
{ path: '/my/clips', component: page('my-clips/index') },
{ path: '/scratchpad', component: page('scratchpad') },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment