diff --git a/extensions/vscode/webviews/homeView/src/components/EvenEasierDeploy.vue b/extensions/vscode/webviews/homeView/src/components/EvenEasierDeploy.vue index 8a9357d0a..e92cafb19 100644 --- a/extensions/vscode/webviews/homeView/src/components/EvenEasierDeploy.vue +++ b/extensions/vscode/webviews/homeView/src/components/EvenEasierDeploy.vue @@ -221,10 +221,7 @@ /> -
+
{ }); }; +const showContentButton = computed(() => { + const record = home.selectedContentRecord; + if (!record) { + return; + } + return ( + record?.dashboardUrl || (!isPreContentRecord(record) && record.logsUrl) + ); +}); + const viewContent = () => { const record = home.selectedContentRecord; if (!record) {