You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -40,14 +40,36 @@ export class GlMcpBanner extends LitElement {
40
40
@property()
41
41
layout: 'default'|'responsive'='default';
42
42
43
-
@state()
44
-
privatecollapsed: boolean=false;
43
+
@property({type: Boolean})
44
+
collapsed: boolean=false;
45
+
46
+
@property({type: Boolean})
47
+
privatecanAutoRegister: boolean=false;
45
48
46
49
overriderender(): unknown{
47
50
if(this.collapsed){
48
51
returnnothing;
49
52
}
50
53
54
+
if(this.canAutoRegister){
55
+
constbodyHtml=`GitKraken MCP is now active in Copilot chat. Ask Copilot to "start work on issue PROJ-123" or "create a PR for my commits" to see Git workflows powered by AI. <a href="${urls.helpCenterMCP}">Learn more</a>`;
0 commit comments