Skip to content

Commit

Permalink
rename component use to kebab case
Browse files Browse the repository at this point in the history
  • Loading branch information
Polectron committed Aug 18, 2022
1 parent 23cd08d commit 37acd6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/components/ProjectsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</q-card-section>
<q-card-section>
<div class="row q-col-gutter-md">
<ProjectCard v-for="project in projects" :key="project.name" v-bind="{ project: project }"
<project-card v-for="project in projects" :key="project.name" v-bind="{ project: project }"
@delete:project="$emit('delete:project', project.name)"
@upload:project="$emit('upload:project', project.name)" />
</div>
Expand Down

0 comments on commit 37acd6d

Please sign in to comment.