Skip to content

Commit 4200779

Browse files
committed
Hides indicator on Inspect Overview tab
1 parent 9134abb commit 4200779

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/webviews/apps/commitDetails/components/commit-details-app.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ export class GlCommitDetailsApp extends LitElement {
366366
return html`<gl-status-nav .wip=${this.state.wip} .preferences=${this.state.preferences}></gl-status-nav>`;
367367
}
368368

369-
private renderRepoStatusContent(isWip: boolean) {
369+
private renderRepoStatusContent(_isWip: boolean) {
370370
const statusIndicator = this.wipStatus?.status;
371371
return html`
372372
<code-icon icon="gl-repository-filled"></code-icon>
@@ -388,11 +388,11 @@ export class GlCommitDetailsApp extends LitElement {
388388
class="inspect-header__tab-indicator inspect-header__tab-indicator--${statusIndicator}"
389389
></gl-indicator>`,
390390
)}
391-
${when(
392-
isWip !== true && statusIndicator != null,
393-
() => html`<gl-indicator pulse class="inspect-header__tab-pulse"></gl-indicator>`,
394-
)}
395391
`;
392+
// ${when(
393+
// isWip !== true && statusIndicator != null,
394+
// () => html`<gl-indicator pulse class="inspect-header__tab-pulse"></gl-indicator>`,
395+
// )}
396396
}
397397

398398
renderWipTooltipContent() {

0 commit comments

Comments
 (0)