mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2026-01-18 04:22:27 +01:00
fix:#61 added i18n update and pinned typescript version against vue-tsc problem with
This commit is contained in:
@@ -96,11 +96,11 @@ getCourses();
|
||||
<template>
|
||||
<DynamicPage
|
||||
:hide-content="selectedCourse.name === ''"
|
||||
:headline="$t('courseSelection.headline')"
|
||||
:sub-title="$t('courseSelection.subTitle')"
|
||||
:headline="t('courseSelection.headline')"
|
||||
:sub-title="t('courseSelection.subTitle')"
|
||||
icon="pi pi-calendar"
|
||||
:button="{
|
||||
label: $t('courseSelection.nextStep'),
|
||||
label: t('courseSelection.nextStep'),
|
||||
icon: 'pi pi-arrow-right',
|
||||
disabled: store.isEmpty(),
|
||||
onClick: () => router.push('/additional-modules'),
|
||||
@@ -113,8 +113,8 @@ getCourses();
|
||||
:class="flexSpecs"
|
||||
filter
|
||||
option-label="name"
|
||||
:placeholder="$t('courseSelection.courseDropDown')"
|
||||
:empty-message="$t('courseSelection.noCoursesAvailable')"
|
||||
:placeholder="t('courseSelection.courseDropDown')"
|
||||
:empty-message="t('courseSelection.noCoursesAvailable')"
|
||||
:auto-filter-focus="true"
|
||||
@change="getModules()"
|
||||
></Dropdown>
|
||||
@@ -123,7 +123,7 @@ getCourses();
|
||||
:options="semesters"
|
||||
:class="flexSpecs"
|
||||
option-label="name"
|
||||
:placeholder="$t('courseSelection.semesterDropDown')"
|
||||
:placeholder="t('courseSelection.semesterDropDown')"
|
||||
@change="getCourses()"
|
||||
></Dropdown>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user