瀏覽代碼

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…
取消
儲存