Skip to content

Commit

Permalink
style(console): update webhook list page styles (#5871)
Browse files Browse the repository at this point in the history
update webhook list page styles
  • Loading branch information
simeng-li authored May 16, 2024
1 parent 7216f2a commit 1246d2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/console/src/pages/Webhooks/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function Webhooks() {
{
title: <DynamicT forKey="webhooks.table.name" />,
dataIndex: 'name',
colSpan: 5,
colSpan: 4,
render: ({ id, name }) => {
return (
<ItemPreview
Expand All @@ -87,10 +87,10 @@ function Webhooks() {
{
title: <DynamicT forKey="webhooks.table.events" />,
dataIndex: 'events',
colSpan: 6,
colSpan: 7,
render: ({ event, events }) => {
const eventArray = conditional(events.length > 0 && events) ?? [event];
return eventArray.join(', ');
return eventArray.join(' / ');
},
},
{
Expand Down

0 comments on commit 1246d2b

Please sign in to comment.