Skip to content

Commit

Permalink
Merge pull request #9155 from jeffibm/fix-structured-list-test
Browse files Browse the repository at this point in the history
Fix MiqStructuredList test
  • Loading branch information
GilbertCherrie authored Apr 11, 2024
2 parents 2327d39 + 5cc9035 commit 6cde48e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/javascript/components/miq-structured-list/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const MiqStructuredList = ({
export default MiqStructuredList;

MiqStructuredList.propTypes = {
title: PropTypes.string,
title: PropTypes.oneOfType([PropTypes.string, PropTypes.shape({})]),
headers: PropTypes.arrayOf(PropTypes.any),
rows: PropTypes.arrayOf(PropTypes.any),
onClick: PropTypes.func,
Expand Down

0 comments on commit 6cde48e

Please sign in to comment.