Explorar el Código

Fixes icons in action item component

main
Keith Daulton hace 1 año
padre
commit
b180bffa99
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/webviews/apps/shared/components/actions/action-item.ts

+ 2
- 2
src/webviews/apps/shared/components/actions/action-item.ts Ver fichero

@ -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>
`;
}

Cargando…
Cancelar
Guardar