Skip to content

Commit

Permalink
chore: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
cipchk committed Jan 19, 2025
1 parent ed76b53 commit be24d34
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/abc/notice-icon/notice-icon.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ import { NoticeIconSelect, NoticeItem } from './notice-icon.types';
]
})
export class NoticeIconComponent {
locale = toSignal<LocaleData>(inject(DelonLocaleService).change.pipe(map(data => data['noticeIcon'])));
locale = toSignal<LocaleData>(inject(DelonLocaleService).change.pipe(map(data => data['noticeIcon'])), {
requireSync: true
});
data = input<NoticeItem[]>([]);
count = input<number | undefined, unknown>(undefined, { transform: numberAttribute });
loading = input<boolean, unknown>(false, { transform: booleanAttribute });
Expand Down

0 comments on commit be24d34

Please sign in to comment.