diff --git a/browser_tests/tests/templates.spec.ts-snapshots/template-grid-varying-content-chromium-linux.png b/browser_tests/tests/templates.spec.ts-snapshots/template-grid-varying-content-chromium-linux.png index 14b99a2604..40218f035d 100644 Binary files a/browser_tests/tests/templates.spec.ts-snapshots/template-grid-varying-content-chromium-linux.png and b/browser_tests/tests/templates.spec.ts-snapshots/template-grid-varying-content-chromium-linux.png differ diff --git a/src/components/custom/widget/WorkflowTemplateSelectorDialog.vue b/src/components/custom/widget/WorkflowTemplateSelectorDialog.vue index dfaef76a29..6495d4ece4 100644 --- a/src/components/custom/widget/WorkflowTemplateSelectorDialog.vue +++ b/src/components/custom/widget/WorkflowTemplateSelectorDialog.vue @@ -178,7 +178,7 @@ v-show="isTemplateVisibleOnDistribution(template)" :key="template.name" ref="cardRefs" - size="compact" + size="tall" variant="ghost" rounded="lg" :data-testid="`template-workflow-${template.name}`" @@ -318,6 +318,20 @@ +
+ + + + +
@@ -483,6 +497,8 @@ const { const getEffectiveSourceModule = (template: TemplateInfo) => template.sourceModule || 'default' +const isAppTemplate = (template: TemplateInfo) => template.name.endsWith('.app') + const getBaseThumbnailSrc = (template: TemplateInfo) => { const sm = getEffectiveSourceModule(template) return getTemplateThumbnailUrl(template, sm, sm === 'default' ? '1' : '')