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 d5a65f7 commit 72d623dCopy full SHA for 72d623d
src/contents/gitpod-dashboard.ts
@@ -34,5 +34,10 @@ const automaticallyUpdateEndpoint = async () => {
34
if (isSiteGitpod()) {
35
sessionStorage.setItem("browser-extension-installed", "true"); // todo(ft): delete after migration is complete
36
localStorage.setItem("extension-last-seen-active", new Date().toISOString());
37
+ const targetElement = document.querySelector(`meta[name="extension-active"]`);
38
+ if (targetElement) {
39
+ targetElement.setAttribute("content", "true");
40
+ }
41
+
42
automaticallyUpdateEndpoint();
43
}
0 commit comments