From 2bc3db4b2841c1023b239b95480d051525337bbe Mon Sep 17 00:00:00 2001 From: Sergio Betanzos Date: Tue, 31 May 2022 10:30:35 +0200 Subject: [PATCH] M #~: Minor fix on attribute component proptypes (#2108) --- .../src/client/components/Tabs/Common/Attribute/Attribute.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fireedge/src/client/components/Tabs/Common/Attribute/Attribute.js b/src/fireedge/src/client/components/Tabs/Common/Attribute/Attribute.js index 4d47bf04af..5649a8204a 100644 --- a/src/fireedge/src/client/components/Tabs/Common/Attribute/Attribute.js +++ b/src/fireedge/src/client/components/Tabs/Common/Attribute/Attribute.js @@ -186,7 +186,7 @@ export const AttributePropTypes = { handleDelete: PropTypes.func, handleEdit: PropTypes.func, handleGetOptionList: PropTypes.func, - link: PropTypes.string, + link: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]), icon: PropTypes.any, name: PropTypes.string.isRequired, path: PropTypes.string,