Commit acd67d21 authored by Jakub Knejzlík's avatar Jakub Knejzlík Committed by 陈帅

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.
parent 8320552c
......@@ -20,7 +20,7 @@ export interface INoticeIconTabProps {
name?: string;
showClear?: boolean;
skeletonCount?: number;
skeletonProps: SkeletonProps;
skeletonProps?: SkeletonProps;
style?: React.CSSProperties;
title?: string;
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment