mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 21:35:23 +02:00
feat: add warning events count next to the status badge (#828)
This commit is contained in:
parent
f4df51884c
commit
1332f718ae
18 changed files with 120 additions and 37 deletions
|
@ -3,5 +3,5 @@ import { columnHelper } from './helper';
|
|||
export const command = columnHelper.accessor((row) => row.Command, {
|
||||
header: 'Command',
|
||||
id: 'command',
|
||||
cell: ({ getValue }) => getValue(),
|
||||
cell: ({ getValue }) => getValue() ?? '',
|
||||
});
|
||||
|
|
|
@ -3,5 +3,5 @@ import { columnHelper } from './helper';
|
|||
export const schedule = columnHelper.accessor((row) => row.Schedule, {
|
||||
header: 'Schedule',
|
||||
id: 'schedule',
|
||||
cell: ({ getValue }) => getValue(),
|
||||
cell: ({ getValue }) => getValue() ?? '',
|
||||
});
|
||||
|
|
|
@ -3,5 +3,5 @@ import { columnHelper } from './helper';
|
|||
export const timezone = columnHelper.accessor((row) => row.Timezone, {
|
||||
header: 'Timezone',
|
||||
id: 'timezone',
|
||||
cell: ({ getValue }) => getValue(),
|
||||
cell: ({ getValue }) => getValue() ?? '',
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue