File tree 1 file changed +10
-8
lines changed
apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.v3.$projectParam.alerts 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -229,18 +229,19 @@ export default function Page() {
229
229
< TableCellMenu
230
230
isSticky
231
231
popoverContent = {
232
- alertChannel . enabled ? (
233
- < DisableAlertChannelButton id = { alertChannel . id } />
234
- ) : (
235
- < EnableAlertChannelButton id = { alertChannel . id } />
236
- )
232
+ < >
233
+ { alertChannel . enabled ? (
234
+ < DisableAlertChannelButton id = { alertChannel . id } />
235
+ ) : (
236
+ < EnableAlertChannelButton id = { alertChannel . id } />
237
+ ) }
238
+ < DeleteAlertChannelButton id = { alertChannel . id } />
239
+ </ >
237
240
}
238
241
className = {
239
242
alertChannel . enabled ? "" : "group-hover/table-row:bg-charcoal-800/50"
240
243
}
241
- >
242
- < DeleteAlertChannelButton id = { alertChannel . id } />
243
- </ TableCellMenu >
244
+ />
244
245
</ TableRow >
245
246
) )
246
247
) : (
@@ -351,6 +352,7 @@ function DeleteAlertChannelButton(props: { id: string }) {
351
352
name = "action"
352
353
value = "delete"
353
354
fullWidth
355
+ textAlignLeft
354
356
type = "submit"
355
357
variant = "small-menu-item"
356
358
LeadingIcon = { TrashIcon }
You can’t perform that action at this time.
0 commit comments