feat: rename lists to projects #2697

Closed
konrad wants to merge 53 commits from feature/rename-lists-to-projects into main
1 changed files with 1 additions and 1 deletions
Showing only changes of commit bbeab337e2 - Show all commits

View File

@ -51,7 +51,7 @@
<p v-if="n.projects.length === 0" class="has-text-centered has-text-grey mt-4 is-italic">
{{ $t('namespace.noProjects') }}
<BaseButton :to="{name: 'projects.create', params: {namespaceId: n.id}}">
<BaseButton :to="{name: 'project.create', params: {namespaceId: n.id}}">
konrad marked this conversation as resolved Outdated

Didn't check, but shouldn't this be name: 'project.create' since list was also singular here.

Didn't check, but shouldn't this be `name: 'project.create'` since list was also singular here.

Yes, it should! Nice catch.

Fixed.

Yes, it should! Nice catch. Fixed.
{{ $t('namespace.createProject') }}
</BaseButton>
</p>