Преглед изворни кода

Fixes icons in action item component

main
Keith Daulton пре 1 година
родитељ
комит
b180bffa99
1 измењених фајлова са 2 додато и 2 уклоњено
  1. +2
    -2
      src/webviews/apps/shared/components/actions/action-item.ts

+ 2
- 2
src/webviews/apps/shared/components/actions/action-item.ts Прегледај датотеку

@ -43,7 +43,7 @@ export class ActionItem extends LitElement {
@property()
icon = '';
overriderender() {
override render() {
return html`
<a
role="${!this.href ? 'button' : nothing}"
@ -51,7 +51,7 @@ export class ActionItem extends LitElement {
aria-label="${this.label}"
title="${this.label}"
>
<code-icon .icon="${this.icon}"></code-icon>
<code-icon icon="${this.icon}"></code-icon>
</a>
`;
}

Loading…
Откажи
Сачувај