From 4a429120716ceab0299d81021aa2eb245f1609c6 Mon Sep 17 00:00:00 2001
From: alex <alex@alexloehr.net>
Date: Tue, 03 Jun 2025 19:29:51 +0000
Subject: [PATCH] fixing paths

---
 vue/src/pages/KursDetail.vue |   28 +++++++++++++++++-----------
 1 files changed, 17 insertions(+), 11 deletions(-)

diff --git a/vue/src/pages/KursDetail.vue b/vue/src/pages/KursDetail.vue
index a91b5dc..a09d8c0 100644
--- a/vue/src/pages/KursDetail.vue
+++ b/vue/src/pages/KursDetail.vue
@@ -48,7 +48,8 @@
          <span>ref_id</span>
          <div>
             <a :href="`${iliasBase}/goto.php?target=${kurs.type}_${kurs.ref_id}`" target="_blank">
-               {{ kurs.ref_id }} <LinkExtern />
+               {{ kurs.ref_id }}
+               <LinkExtern />
             </a>
          </div>
 
@@ -69,11 +70,13 @@
       </h2>
       <table>
          <thead>
-            <th>parent_id</th>
-            <th>ref_id</th>
-            <th>obj_id</th>
-            <th>title</th>
-            <th>type</th>
+            <tr>
+               <th>parent_id</th>
+               <th>ref_id</th>
+               <th>obj_id</th>
+               <th>title</th>
+               <th>type</th>
+            </tr>
          </thead>
          <tbody>
             <!-- TODO verlinken auf Ziel in ILAS | goto.php?target=crs_ID -->
@@ -81,7 +84,8 @@
                <td>{{ item.parent_id }}</td>
                <td>
                   <a :href="`${iliasBase}/goto.php?target=${item.type}_${item.ref_id}`" target="_blank">
-                     {{ item.ref_id }} <LinkExtern />
+                     {{ item.ref_id }}
+                     <LinkExtern />
                   </a>
                </td>
                <td>{{ item.obj_id }}</td>
@@ -98,10 +102,12 @@
       <div :style="{columns: kursTn?.length > 16 ? 3 : 1}">
          <table>
             <thead>
-               <th>usr_id</th>
-               <th>login</th>
-               <th>firstname</th>
-               <th>lastname</th>
+               <tr>
+                  <th>usr_id</th>
+                  <th>login</th>
+                  <th>firstname</th>
+                  <th>lastname</th>
+               </tr>
             </thead>
             <tbody>
                <tr v-for="tn in kursTn">

--
Gitblit v1.8.0