Skip to content
Snippets Groups Projects
Commit 0e418216 authored by Malin Haugland Høli's avatar Malin Haugland Høli
Browse files

refactor: :ambulance: Small fixes

parent c3b5aa5b
No related branches found
No related tags found
Loading
......@@ -5,7 +5,7 @@
>
<div class="bg-white p-6 rounded-lg shadow-lg max-w-sm w-full text-center">
<h2 class="title font-bold mb-4">{{ title }}</h2>
<p class="message mb-4">{{ message }}</p>
<p class="message mb-4" v-html="message"></p>
<slot name="input"></slot>
......
......@@ -9,7 +9,7 @@ export interface Challenge {
description: string
due: string // Mapping ZonedDateTime to Date, optional since Temporal annotation not always implies required
createdOn?: string // Mapping ZonedDateTime to Date
type: string // Not specified as @NotNull, so it's optional
type?: string // Not specified as @NotNull, so it's optional
completion?: number // Assuming BigDecimal maps to number, optional due to @Transient
completedOn?: string // Adding the new variable as optional
}
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