forked from ddrilling/asb_cloud_front
Добавлен вывод MSE на странице мониторинга
This commit is contained in:
parent
7c3d46893a
commit
7f9a9c92d9
@ -11,6 +11,7 @@ const params = [
|
||||
{ label: 'Расход, м³/ч', accessorName: 'flow', isArrowVisible: true },
|
||||
{ label: 'Расход х.х., м³/ч', accessorName: 'flowIdle', isArrowVisible: true },
|
||||
{ label: 'Время', accessorName: 'date', format: 'HH:mm:ss' },
|
||||
{ label: 'MSE, %', accessorName: 'mse', format: 2 },
|
||||
]
|
||||
|
||||
export const CustomColumn = memo(({ data }) => {
|
||||
@ -26,8 +27,8 @@ export const CustomColumn = memo(({ data }) => {
|
||||
label={param.label}
|
||||
value={param.value}
|
||||
suffix={param.units}
|
||||
format = {param.format}
|
||||
isArrowVisible = {param.isArrowVisible}
|
||||
format={param.format}
|
||||
isArrowVisible={param.isArrowVisible}
|
||||
/>
|
||||
))}
|
||||
<RigMnemo
|
||||
|
Loading…
Reference in New Issue
Block a user