Prechádzať zdrojové kódy

Fix NoticeIcon tab typings for skeletonProps (#3400)

The attribute `skeletonProps` in NoticeIcon tab has default value of `{}` so it doesn't necessary have to be required as stated in typings. This PR fixes it be optional.
Jakub Knejzlík 7 rokov pred
rodič
commit
acd67d21e7

+ 1 - 1
src/components/NoticeIcon/NoticeIconTab.d.ts

@@ -20,7 +20,7 @@ export interface INoticeIconTabProps {
   name?: string;
   name?: string;
   showClear?: boolean;
   showClear?: boolean;
   skeletonCount?: number;
   skeletonCount?: number;
-  skeletonProps: SkeletonProps;
+  skeletonProps?: SkeletonProps;
   style?: React.CSSProperties;
   style?: React.CSSProperties;
   title?: string;
   title?: string;
 }
 }