fix(cron): replace hardcoded channel name in no-delivery-targets message (#744)

This commit is contained in:
paisley
2026-04-02 13:37:49 +08:00
committed by GitHub
Unverified
parent 7e2c4d3835
commit c14bdfa204
4 changed files with 4 additions and 4 deletions

View File

@@ -629,7 +629,7 @@ function TaskDialog({ job, configuredChannels, onClose, onSave }: TaskDialogProp
<p className="text-[12px] text-muted-foreground">
{availableTargetOptions.length > 0
? t('dialog.deliveryTargetDescAuto')
: t('dialog.noDeliveryTargets')}
: t('dialog.noDeliveryTargets', { channel: getChannelDisplayName(effectiveDeliveryChannel) })}
</p>
</div>
</div>