File tree Expand file tree Collapse file tree 1 file changed +5
-12
lines changed
src/webviews/apps/plus/home/components Expand file tree Collapse file tree 1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,9 @@ export class GlActiveWork extends SignalWatcher(LitElement) {
29
29
branchCardStyles ,
30
30
headingLoaderStyles ,
31
31
css `
32
+ [hidden] {
33
+ display: none;
34
+ }
32
35
:host {
33
36
display: block;
34
37
margin-bottom: 2.4rem;
@@ -100,12 +103,13 @@ export class GlActiveWork extends SignalWatcher(LitElement) {
100
103
>
101
104
< span slot ="heading-actions "
102
105
> < gl-button
106
+ hidden
103
107
aria-busy ="${ ifDefined ( isFetching ) } "
104
108
?disabled =${ isFetching }
105
109
class ="section-heading-action"
106
110
appearance="toolbar"
107
111
tooltip="Open in Commit Graph"
108
- @click=${ ( e : MouseEvent ) => this . onChange ( e ) }
112
+ @click=${ ( _e : MouseEvent ) => { } }
109
113
> < code-icon icon ="gl-graph "> </ code-icon
110
114
> </ gl-button >
111
115
${ when (
@@ -323,17 +327,6 @@ export class GlActiveWork extends SignalWatcher(LitElement) {
323
327
) ;
324
328
}
325
329
326
- // if (state?.ahead || state?.behind) {
327
- // rendered.push(
328
- // html`<gl-tracking-pill
329
- // colorized
330
- // outlined
331
- // ahead=${state.ahead}
332
- // behind=${state.behind}
333
- // ></gl-tracking-pill>`,
334
- // );
335
- // }
336
-
337
330
if ( rendered . length ) {
338
331
return html `< p class ="branch-item__section branch-item__section--details "> ${ rendered } </ p > ` ;
339
332
}
You can’t perform that action at this time.
0 commit comments