fix: fixing the eslint stuff

This commit is contained in:
2025-04-21 17:38:14 +02:00
parent 8b863ee4b1
commit a0eeb6715e
7 changed files with 187 additions and 32 deletions

View File

@ -56,10 +56,10 @@ const props = defineProps<{
title: number;
titleText: string;
description: string;
is_admin: number;
isAdmin: number;
}>();
const IS_ADMIN = props.is_admin;
const IS_ADMIN = props.isAdmin;
const expanded = ref(false);
const currentDescriptions = ref<string[]>([]);