Skip to content

Commit

Permalink
fix(ProjectCreateModal): display correct remix title instead of `[obj…
Browse files Browse the repository at this point in the history
…ect Object]` (goplus#1230)

Fixes goplus#1217

Signed-off-by: Aofei Sheng <[email protected]>
  • Loading branch information
aofei authored Jan 10, 2025
1 parent 555d751 commit 700dcad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spx-gui/src/components/project/ProjectCreateModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ const signedInUser = computed(() => userStore.getSignedInUser())
const title = computed(() => {
if (props.remixSource == null) return { en: 'Create a new project', zh: '创建新的项目' }
return { en: `Remix ${props.remixSource}`, zh: `改编 ${parseRemixSource(props.remixSource)}` }
return { en: `Remix ${props.remixSource}`, zh: `改编 ${props.remixSource}` }
})
const initialName = props.remixSource == null ? '' : parseRemixSource(props.remixSource).project
Expand Down

0 comments on commit 700dcad

Please sign in to comment.