1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-23 20:37:42 +00:00

01 fix tagsData type warning

This commit is contained in:
Michael An
2025-03-12 11:33:14 +08:00
parent a205d62cd7
commit 43cd67f8b1

View File

@@ -35,7 +35,7 @@ const FileTagsFormatter = ({ tagsData, value: oldValue, className, children: emp
FileTagsFormatter.propTypes = { FileTagsFormatter.propTypes = {
value: PropTypes.array, value: PropTypes.array,
tagsData: PropTypes.array, tagsData: PropTypes.object,
className: PropTypes.string, className: PropTypes.string,
showName: PropTypes.bool, showName: PropTypes.bool,
}; };