Skip to content

Commit

Permalink
style: lint fix #434
Browse files Browse the repository at this point in the history
  • Loading branch information
bsilkyn committed May 22, 2024
1 parent 332f1ab commit fbe87c5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
9 changes: 8 additions & 1 deletion frontend/src/components/courses/CourseForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,14 @@ watchEffect(() => {
</div>

<!-- Submit button -->
<Button id="courseSave" :label="t('views.courses.save')" type="submit" icon="pi pi-check" iconPos="right" rounded />
<Button
id="courseSave"
:label="t('views.courses.save')"
type="submit"
icon="pi pi-check"
iconPos="right"
rounded
/>
</form>
</template>

Expand Down
6 changes: 5 additions & 1 deletion frontend/src/views/dashboard/roles/TeacherDashboardView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ watchImmediate(
{{ t('components.list.noCourses.teacher') }}
</p>

<ProjectCreateButton id="projectCreate" :courses="filteredCourses" :label="t('components.button.createProject')" />
<ProjectCreateButton
id="projectCreate"
:courses="filteredCourses"
:label="t('components.button.createProject')"
/>
</template>
</template>
</ProjectList>
Expand Down

0 comments on commit fbe87c5

Please sign in to comment.