Browse Source

Remove last used column for webhooks as it does not really make sense to have it

pull/1886/head
Gabe Kangas 5 years ago
parent
commit
a2ed01b088
  1. 12
      web/pages/webhooks.tsx

12
web/pages/webhooks.tsx

@ -114,18 +114,6 @@ export default function Webhooks() {
</> </>
), ),
}, },
{
title: 'Last Used',
dataIndex: 'lastUsed',
key: 'lastUsed',
render: (lastUsed) => {
if (!lastUsed) {
return 'Never';
}
const dateObject = new Date(lastUsed);
return format(dateObject, 'P p');
},
},
]; ];
const getWebhooks = async () => { const getWebhooks = async () => {

Loading…
Cancel
Save