style: fix prettier formatting in NamespacesListView
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -104,9 +104,7 @@ export default function NamespacesListView() {
|
||||
},
|
||||
{
|
||||
label: 'Pass',
|
||||
getter: (row: NamespaceRow) => (
|
||||
<StatusLabel status="success">{row.pass}</StatusLabel>
|
||||
),
|
||||
getter: (row: NamespaceRow) => <StatusLabel status="success">{row.pass}</StatusLabel>,
|
||||
},
|
||||
{
|
||||
label: 'Warning',
|
||||
@@ -116,15 +114,11 @@ export default function NamespacesListView() {
|
||||
},
|
||||
{
|
||||
label: 'Danger',
|
||||
getter: (row: NamespaceRow) => (
|
||||
<StatusLabel status="error">{row.danger}</StatusLabel>
|
||||
),
|
||||
getter: (row: NamespaceRow) => <StatusLabel status="error">{row.danger}</StatusLabel>,
|
||||
},
|
||||
{
|
||||
label: 'Skipped',
|
||||
getter: (row: NamespaceRow) => (
|
||||
<StatusLabel status="">{row.skipped}</StatusLabel>
|
||||
),
|
||||
getter: (row: NamespaceRow) => <StatusLabel status="">{row.skipped}</StatusLabel>,
|
||||
},
|
||||
]}
|
||||
data={rows}
|
||||
|
||||
Reference in New Issue
Block a user