From b3f65f02b135c99783ec3589df72f93393a6a642 Mon Sep 17 00:00:00 2001 From: wangjiahao <1522128093@qq.com> Date: Wed, 29 Nov 2023 13:25:15 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E6=A0=B7=E5=BC=8F=E8=B0=83=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../core-frontend/src/views/workbranch/TemplateBranchItem.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/core-frontend/src/views/workbranch/TemplateBranchItem.vue b/core/core-frontend/src/views/workbranch/TemplateBranchItem.vue index 22ae2388e4..897b2690c4 100644 --- a/core/core-frontend/src/views/workbranch/TemplateBranchItem.vue +++ b/core/core-frontend/src/views/workbranch/TemplateBranchItem.vue @@ -46,7 +46,9 @@ const thumbnailUrl = computed(() => { if ( props.template.thumbnail.indexOf('http') > -1 || props.template.thumbnail.indexOf('static-resource') > -1 - ) else { + ) { + return props.template.thumbnail + } else { return props.baseUrl + props.template.thumbnail } })