0.10.2-18 Frontend

This commit is contained in:
2026-03-17 11:47:41 +00:00
parent 57ffc40a95
commit 7796587f16
9 changed files with 24 additions and 19 deletions
+3 -3
View File
@@ -935,7 +935,7 @@ export default function JobDetailDialog({
disabled={!canRestartEncode}
/>
) : null}
{!isCd && typeof onRestartReview === 'function' ? (
{!isCd && !isAudiobook && typeof onRestartReview === 'function' ? (
<Button
label="Review neu starten"
icon="pi pi-refresh"
@@ -947,7 +947,7 @@ export default function JobDetailDialog({
disabled={!canRestartReview}
/>
) : null}
{!isCd ? (
{!isCd && !isAudiobook ? (
<Button
label="RAW neu encodieren"
icon="pi pi-cog"
@@ -969,7 +969,7 @@ export default function JobDetailDialog({
disabled={!job.rawStatus?.exists || typeof onDeleteFiles !== 'function'}
/>
<Button
label={isCd ? 'Audio löschen' : 'Movie löschen'}
label={isCd ? 'Audio löschen' : (isAudiobook ? 'Ausgabe löschen' : 'Movie löschen')}
icon="pi pi-trash"
severity="warning"
outlined