We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16fb724 commit 37afe47Copy full SHA for 37afe47
1 file changed
index.html
@@ -21,6 +21,13 @@
21
<script type="module" src="components/gui/site/index.js"></script>
22
<script type="module" src="components/gui/card/Card.js"></script>
23
<link href="components/gui/site/index.css" rel="stylesheet" type="text/css" />
24
+ <script type="module" defer>
25
+ const continueWorkingCard = document.querySelector('tpen-card:has(tpen-continue-working)')
26
+
27
+ TPEN.eventDispatcher.on('tpen-no-recent-activity', () => {
28
+ continueWorkingCard?.remove()
29
+ })
30
+ </script>
31
32
</head>
33
0 commit comments