Hide delete action for completed research

This commit is contained in:
faligam
2026-09-06 17:51:18 +02:00
parent d5c270c8bc
commit 6117c4f98e

View File

@@ -234,15 +234,17 @@
on:share={onShare} on:share={onShare}
on:revoke={onRevoke} on:revoke={onRevoke}
/> />
<button {#if statusText !== 'COMPLETED'}
on:click={handleDelete} <button
class="p-1.5 rounded text-gray-400 hover:text-red-500 hover:bg-red-50 dark:hover:bg-red-900/20 transition-colors" on:click={handleDelete}
title="Löschen" class="p-1.5 rounded text-gray-400 hover:text-red-500 hover:bg-red-50 dark:hover:bg-red-900/20 transition-colors"
> title="Löschen"
<svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24"> >
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"></path> <svg class="w-4 h-4" fill="none" stroke="currentColor" viewBox="0 0 24 24">
</svg> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 7l-.867 12.142A2 2 0 0116.138 21H7.862a2 2 0 01-1.995-1.858L5 7m5 4v6m4-6v6m1-10V4a1 1 0 00-1-1h-4a1 1 0 00-1 1v3M4 7h16"></path>
</button> </svg>
</button>
{/if}
</div> </div>
</div> </div>
</div> </div>