We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6930845 commit 3d88306Copy full SHA for 3d88306
.workflow-script/index.html
@@ -102,8 +102,13 @@
102
clone.dataset.slug = manifest.slug
103
} else {
104
clone.innerHTML = clone.innerHTML
105
+ .replace('#图标', defaultIcon)
106
.replace('#标题', `<a class="underline hover:text-blue-500 duration-300" href="https://github.com/${repo}" target="_blank">${repo}</a>`)
107
.replace('#说明', manifest == 404 ? '疑似跑路' : '获取失败')
108
+ if (manifest == 404) {
109
+ clone.classList.remove('bg-white')
110
+ clone.classList.add('bg-red-100')
111
+ }
112
}
113
return clone
114
0 commit comments