mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-08-10 13:43:49 +02:00
Resolve "lint, test and build for frontend image"
This commit is contained in:
@@ -24,10 +24,10 @@ async function nextStep() {
|
||||
<div class="flex align-items-center justify-content-end h-4rem m-2 w-full lg:w-10">
|
||||
<Button
|
||||
:disabled="store.isEmpty()"
|
||||
@click="nextStep()"
|
||||
class="col-12 md:col-4 mb-3 align-self-end"
|
||||
icon="pi pi-arrow-right"
|
||||
:label="$t('additionalModules.nextStep')"
|
||||
@click="nextStep()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -58,9 +58,9 @@ async function getModules() {
|
||||
|
||||
<template>
|
||||
<DynamicPage
|
||||
:hideContent="selectedCourse.name === ''"
|
||||
:hide-content="selectedCourse.name === ''"
|
||||
:headline="$t('courseSelection.headline')"
|
||||
:subTitle="$t('courseSelection.subTitle')"
|
||||
:sub-title="$t('courseSelection.subTitle')"
|
||||
icon="pi pi-calendar"
|
||||
:button="{
|
||||
label: $t('courseSelection.nextStep'),
|
||||
|
@@ -49,7 +49,7 @@ const hasContent = computed(() => {
|
||||
>
|
||||
<slot
|
||||
name="selection"
|
||||
flexSpecs="flex-1 m-0"
|
||||
flex-specs="flex-1 m-0"
|
||||
></slot>
|
||||
</div>
|
||||
<div
|
||||
@@ -59,9 +59,9 @@ const hasContent = computed(() => {
|
||||
<Button
|
||||
:disabled="button.disabled"
|
||||
class="col-12 md:col-4"
|
||||
@click="button.onClick()"
|
||||
:icon="button.icon"
|
||||
:label="button.label"
|
||||
@click="button.onClick()"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
|
@@ -72,9 +72,9 @@ function loadCalendar(): void {
|
||||
|
||||
<template>
|
||||
<DynamicPage
|
||||
hideContent
|
||||
hide-content
|
||||
:headline="$t('editCalendarView.headline')"
|
||||
:subTitle="$t('editCalendarView.subTitle')"
|
||||
:sub-title="$t('editCalendarView.subTitle')"
|
||||
icon="pi pi-pencil"
|
||||
:button="{
|
||||
label: $t('editCalendarView.loadCalendar'),
|
||||
|
@@ -21,9 +21,9 @@ rooms().then(
|
||||
|
||||
<template>
|
||||
<DynamicPage
|
||||
:hideContent="selectedRoom.name === ''"
|
||||
:hide-content="selectedRoom.name === ''"
|
||||
:headline="$t('roomFinderPage.headline')"
|
||||
:subTitle="$t('roomFinderPage.detail')"
|
||||
:sub-title="$t('roomFinderPage.detail')"
|
||||
icon="pi pi-search"
|
||||
>
|
||||
<template #selection>
|
||||
|
@@ -24,10 +24,10 @@ async function nextStep() {
|
||||
<div class="flex align-items-center justify-content-end h-4rem m-2 w-full lg:w-10">
|
||||
<Button
|
||||
:disabled="store.isEmpty()"
|
||||
@click="nextStep()"
|
||||
class="col-12 md:col-4 mb-3 align-self-end"
|
||||
icon="pi pi-arrow-right"
|
||||
:label="$t('additionalModules.nextStep')"
|
||||
@click="nextStep()"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
@@ -188,9 +188,9 @@ async function deleteFeed() {
|
||||
<div
|
||||
class="flex flex-column sm:flex-row flex-wrap justify-content-between gap-2 w-full"
|
||||
>
|
||||
<Button type="button" severity="danger" outlined @click="visible = true" icon="pi pi-trash" :label="$t('editCalendarView.delete')"/>
|
||||
<Button type="button" severity="info" outlined @click="router.push('edit-additional-modules')" icon="pi pi-plus" :label="$t('editCalendarView.addModules')"/>
|
||||
<Button type="button" severity="success" outlined @click="finalStep()" icon="pi pi-save" :label="$t('editCalendarView.save')"/>
|
||||
<Button type="button" severity="danger" outlined icon="pi pi-trash" :label="$t('editCalendarView.delete')" @click="visible = true"/>
|
||||
<Button type="button" severity="info" outlined icon="pi pi-plus" :label="$t('editCalendarView.addModules')" @click="router.push('edit-additional-modules')"/>
|
||||
<Button type="button" severity="success" outlined icon="pi pi-save" :label="$t('editCalendarView.save')" @click="finalStep()"/>
|
||||
</div>
|
||||
</template>
|
||||
</DataTable>
|
||||
@@ -206,7 +206,7 @@ async function deleteFeed() {
|
||||
</template>
|
||||
<p class="m-0">{{ $t('editCalendarView.dialog.subTitle') }}</p>
|
||||
<template #footer>
|
||||
<Button :label="$t('editCalendarView.dialog.delete')" severity="danger" icon="pi pi-trash" @click="deleteFeed()" autofocus />
|
||||
<Button :label="$t('editCalendarView.dialog.delete')" severity="danger" icon="pi pi-trash" autofocus @click="deleteFeed()" />
|
||||
</template>
|
||||
</Dialog>
|
||||
</div>
|
||||
|
Reference in New Issue
Block a user