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 3145656 commit 447de7eCopy full SHA for 447de7e
index.js
@@ -18,6 +18,15 @@
18
19
const id = 'open-in-codeflow'
20
21
+ const css = [
22
+ // Hide comments from codeflow bot
23
+ '.js-timeline-item:has(* > .author[href="/apps/codeflowapp"]) { display: none; }',
24
+ ].join('')
25
+
26
+ const style = document.createElement('style')
27
+ style.innerHTML = css
28
+ document.head.appendChild(style)
29
30
function createButton() {
31
const a = document.createElement('a')
32
a.href = location.href.replace('https://github.com/', 'https://pr.new/')
0 commit comments