We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a622705 commit 9fa9177Copy full SHA for 9fa9177
index.html
@@ -228,6 +228,9 @@
228
payloads.forEach(payload => {
229
let link = document.createElement('a');
230
link.target = '_blank';
231
+ if (payload.head == null) {
232
+ return;
233
+ }
234
link.textContent = payload.head.slice(0, 6);
235
link.href = `https://github.com/${repoName}/tree/${payload.head}`;
236
link.style.color = '#333'; // Dark text for the link
0 commit comments