2 Commits

Author SHA1 Message Date
5ce5c78698 fix layout by reordering anker element 2025-06-11 09:25:33 +02:00
aeabbd6d1f disable/uncomment input field in vorgang list 2025-06-11 08:18:28 +02:00

View File

@@ -168,14 +168,15 @@
<ul class="divide-y divide-gray-100">
{#each list as item, i}
<li>
<div class=" flex gap-x-4">
<a
href="/view/{$page.params.vorgang}/{item.name}"
class=" flex justify-between gap-x-6 py-5"
aria-label="zum 3D-modell"
>
<div class=" flex gap-x-4">
<Cube />
</a>
<div class="min-w-0 flex-auto">
{#if data.user.admin}
<span
@@ -195,7 +196,7 @@
}}>{item.name}</span
>
<input
<!--<input
class="text-sm font-semibold leading-6 text-gray-900 inline-block min-w-1"
type="text"
name=""
@@ -206,7 +207,7 @@
}}
bind:value={item.name}
id="label__{item.name}"
/>
/>-->
<!-- disabled={item.show_button} -->
<!-- https://iconduck.com/icons/192863/edit-rename -->
@@ -291,6 +292,7 @@
>
</p>
</div>
</a>
</li>
{/each}
</ul>