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',
|
label: 'Pass',
|
||||||
getter: (row: NamespaceRow) => (
|
getter: (row: NamespaceRow) => <StatusLabel status="success">{row.pass}</StatusLabel>,
|
||||||
<StatusLabel status="success">{row.pass}</StatusLabel>
|
|
||||||
),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Warning',
|
label: 'Warning',
|
||||||
@@ -116,15 +114,11 @@ export default function NamespacesListView() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Danger',
|
label: 'Danger',
|
||||||
getter: (row: NamespaceRow) => (
|
getter: (row: NamespaceRow) => <StatusLabel status="error">{row.danger}</StatusLabel>,
|
||||||
<StatusLabel status="error">{row.danger}</StatusLabel>
|
|
||||||
),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: 'Skipped',
|
label: 'Skipped',
|
||||||
getter: (row: NamespaceRow) => (
|
getter: (row: NamespaceRow) => <StatusLabel status="">{row.skipped}</StatusLabel>,
|
||||||
<StatusLabel status="">{row.skipped}</StatusLabel>
|
|
||||||
),
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
data={rows}
|
data={rows}
|
||||||
|
|||||||
Reference in New Issue
Block a user