diff --git a/platform/ui/src/components/InputLabelWrapper/InputLabelWrapper.jsx b/platform/ui/src/components/InputLabelWrapper/InputLabelWrapper.jsx index f80dfccdb..e9b17b429 100644 --- a/platform/ui/src/components/InputLabelWrapper/InputLabelWrapper.jsx +++ b/platform/ui/src/components/InputLabelWrapper/InputLabelWrapper.jsx @@ -21,13 +21,21 @@ const InputLabelWrapper = ({ className, children, }) => { + const onClickHandler = e => { + if (!isSortable) { + return; + } + + onLabelClick(e); + }; + return (