From 68377c172a27eef5c490b162cd8f15057138be13 Mon Sep 17 00:00:00 2001 From: Elmar Kresse <18119527+masterElmar@users.noreply.github.com> Date: Tue, 17 Oct 2023 23:33:16 +0200 Subject: [PATCH] restore value in dialogRef --- frontend/src/components/ModuleInformation.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/ModuleInformation.vue b/frontend/src/components/ModuleInformation.vue index bcab03e..e5789c4 100644 --- a/frontend/src/components/ModuleInformation.vue +++ b/frontend/src/components/ModuleInformation.vue @@ -4,7 +4,7 @@ import { Module } from "../model/module.ts"; // eslint-disable-next-line @typescript-eslint/no-explicit-any const dialogRef = inject("dialogRef") as any; -const module = dialogRef.data.module as Module; +const module = dialogRef.value.data.module as Module;