fix: ZIP-Download Icon - pi-box statt pi-file-zip (existiert nicht)

pi-file-zip gibt es in PrimeIcons nicht, daher wurde kein Icon
angezeigt. Ersetzt durch pi-box in Datei-Browser und Share-View.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Stefan Hacker
2026-04-11 20:36:42 +02:00
parent 4b487974c6
commit ed1a619ad1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -78,7 +78,7 @@
<template #body="{ data }">
<div class="row-actions">
<Button
:icon="data.is_folder ? 'pi pi-file-zip' : 'pi pi-download'"
:icon="data.is_folder ? 'pi pi-box' : 'pi pi-download'"
text rounded size="small"
:title="data.is_folder ? 'Als ZIP herunterladen' : 'Herunterladen'"
@click.stop="downloadFile(data)"