File tree Expand file tree Collapse file tree 1 file changed +17
-11
lines changed
packages/ui/src/views/repo/webhooks/webhook-executions Expand file tree Collapse file tree 1 file changed +17
-11
lines changed Original file line number Diff line number Diff line change @@ -148,17 +148,23 @@ export const RepoWebhookExecutionDetailsPage: FC<RepoWebhookExecutionDetailsPage
148
148
</ Layout . Grid >
149
149
</ Layout . Grid >
150
150
151
- < Tabs . Root defaultValue = { view } onValueChange = { onChangeView } className = "flex w-full grow flex-col" >
152
- < StackedList . Item disableHover isHeader className = "py-cn-2xs px-cn-md rounded-t-3 flex-none border" >
153
- < Tabs . List variant = "ghost" >
154
- < Tabs . Trigger value = { WebhookExecutionView . PAYLOAD } >
155
- { t ( 'views:repos.webhookExecution.code.payload' , 'Payload' ) }
156
- </ Tabs . Trigger >
157
- < Tabs . Trigger value = { WebhookExecutionView . SERVER_RESPONSE } >
158
- { t ( 'views:repos.webhookExecution.code.serverResponse' , 'Server Response' ) }
159
- </ Tabs . Trigger >
160
- </ Tabs . List >
161
- </ StackedList . Item >
151
+ < Tabs . Root className = "flex w-full grow flex-col" defaultValue = { view } onValueChange = { onChangeView } >
152
+ < StackedList . Root rounded = "top" >
153
+ < StackedList . Item paddingY = "2xs" disableHover isHeader >
154
+ < StackedList . Field
155
+ title = {
156
+ < Tabs . List variant = "ghost" >
157
+ < Tabs . Trigger value = { WebhookExecutionView . PAYLOAD } >
158
+ { t ( 'views:repos.webhookExecution.code.payload' , 'Payload' ) }
159
+ </ Tabs . Trigger >
160
+ < Tabs . Trigger value = { WebhookExecutionView . SERVER_RESPONSE } >
161
+ { t ( 'views:repos.webhookExecution.code.serverResponse' , 'Server Response' ) }
162
+ </ Tabs . Trigger >
163
+ </ Tabs . List >
164
+ }
165
+ />
166
+ </ StackedList . Item >
167
+ </ StackedList . Root >
162
168
163
169
< Tabs . Content value = { WebhookExecutionView . PAYLOAD } className = "grow" >
164
170
< CodePreview
You can’t perform that action at this time.
0 commit comments