Skip to content

Commit 4e80073

Browse files
authored
fix: small rendering bugs. (#1310)
1 parent 56a7aa3 commit 4e80073

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

gulpfile.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ gulp.task('hash', () => {
8181
return gulp.src(['./public/**'], { encoding: false })
8282
.pipe(revall.revision({
8383
dontRenameFile: [/^\/favicon.ico$/g, '.html', 'sitemap.xml', 'robots.txt', '.woff', '.eot', '.ttf', '.woff2', '.txt'],
84-
dontUpdateReference: ['.woff', '.eot', '.ttf', '.woff2']
84+
dontUpdateReference: ['.woff', '.eot', '.ttf', '.woff2', 'index.md', 'llms.txt']
8585
}))
8686
.pipe(gulp.dest('./public'))
8787
})

site/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ disqusShortname = "checkly"
225225

226226
[[menu.reference]]
227227
name = "llms.txt"
228-
url = "/llms.txt"
228+
url = "https://checklyhq.com/llms.txt"
229229
weight = 210
230230

231231

src/js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ document.querySelectorAll('.highlight').forEach((highlightDiv) => attachClickHan
6868
async function copyCodeToClipboard (button, highlightDiv) {
6969
const codeToCopy = highlightDiv.querySelector(':last-child > code').innerText
7070

71-
await copyToClipboardWrapper(codeToCopy, 'copy-code-button--copied', button)
71+
await copyToClipboardWrapper(codeToCopy, 'copy-code-button--copied', button, '')
7272
}
7373

7474
/**

src/scss/_syntax.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -199,6 +199,7 @@
199199
}
200200

201201
&.copy-code-button--copied {
202+
color: $gray-light;
202203
&:after {
203204
background-color: $green;
204205
mask: url(/images/icons/check.svg) no-repeat;

0 commit comments

Comments
 (0)