From 8c2d138976e35f4ebaf0a29336972c9408462b1d Mon Sep 17 00:00:00 2001 From: elforjani13 <39470382+elforjani13@users.noreply.github.com> Date: Mon, 8 Nov 2021 16:10:54 +0200 Subject: [PATCH] fix: disable sort in SMS integration table. --- src/containers/Preferences/SMSIntegration/components.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/containers/Preferences/SMSIntegration/components.js b/src/containers/Preferences/SMSIntegration/components.js index 841e8f8bd..a8bd30796 100644 --- a/src/containers/Preferences/SMSIntegration/components.js +++ b/src/containers/Preferences/SMSIntegration/components.js @@ -39,12 +39,14 @@ export function useSMSIntegrationTableColumns() { accessor: NotificationAccessor, className: 'notification', width: '180', + disableSortBy: true, }, { Header: intl.get('service'), accessor: 'module_formatted', className: 'service', width: '80', + disableSortBy: true, }, { Header: intl.get('sms_message.label_mesage'), @@ -53,6 +55,7 @@ export function useSMSIntegrationTableColumns() { className: 'sms_message', clickable: true, width: '180', + disableSortBy: true, }, { Header: intl.get('sms_message.label_auto'),