mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2025-07-16 09:38:51 +02:00
formated and linted
This commit is contained in:
@ -2,8 +2,9 @@
|
||||
import { inject } from "vue";
|
||||
import { Module } from "../model/module.ts";
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const dialogRef = inject("dialogRef") as any;
|
||||
const module = dialogRef.value.data.module as Module;
|
||||
const module = dialogRef.data.module as Module;
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@ -22,7 +23,7 @@ const module = dialogRef.value.data.module as Module;
|
||||
<tr>
|
||||
<td>
|
||||
<div class="card">
|
||||
<DataTable :value="module.events" tableStyle="min-width: 50rem">
|
||||
<DataTable :value="module.events" table-style="min-width: 50rem">
|
||||
<Column field="day" header="Day"></Column>
|
||||
<Column field="start" header="Start"></Column>
|
||||
<Column field="end" header="End"></Column>
|
||||
|
Reference in New Issue
Block a user