Skip to content
Snippets Groups Projects
Commit 4e3ad264 authored by Julian's avatar Julian Committed by Hangzhi Yu
Browse files

Mark name in schoolterm field as required

parent 2807d379
No related branches found
No related tags found
1 merge request!1208Resolve "Data management for the Models `Room` and `SchoolTerm`"
......@@ -13,6 +13,17 @@ import DateField from "../generic/forms/DateField.vue";
v-bind="$attrs"
v-on="$listeners"
>
<template #name.field="{ attrs, on }">
<div aria-required="true">
<v-text-field
v-bind="attrs"
v-on="on"
required
:rules="required"
></v-text-field>
</div>
</template>
<template #dateStart="{ item }">
{{ $d(new Date(item.dateStart), "short") }}
</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment