Barcode workflow

This commit is contained in:
Timo Knuth
2026-04-17 22:56:49 +02:00
parent 56d63a0146
commit 5894f4619d
3 changed files with 9 additions and 5 deletions

View File

@@ -173,7 +173,7 @@ export default function CreatePage() {
case 'FEEDBACK':
return content.feedbackUrl || 'https://example.com/feedback';
case 'BARCODE':
return content.value || '';
return isDynamic ? (content.url || '') : (content.value || '');
default:
return 'https://example.com';
}