소스 검색

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

불러오는 중...
취소
저장