Добавлена иконка для статуа "Готово"

This commit is contained in:
Александр Сироткин 2022-02-24 17:59:45 +05:00
parent 81a357b192
commit 0e4c7c6959

View File

@ -1,5 +1,6 @@
import { Button, Layout } from 'antd'
import {
CheckOutlined,
CloseOutlined,
FileWordOutlined,
LoadingOutlined,
@ -31,7 +32,7 @@ const stateString = {
[idStateNotInitialized]: { icon: CloseOutlined, text: 'Не настроена' },
[idStateApproving]: { icon: LoadingOutlined, text: 'Согласовывается' },
[idStateCreating]: { icon: LoadingOutlined, text: 'Формируется' },
[idStateReady]: { icon: null, text: 'Сформирована' },
[idStateReady]: { icon: CheckOutlined, text: 'Сформирована' },
[idStateError]: { icon: WarningOutlined, text: 'Ошибка формирования' },
[idStateUnknown]: { icon: WarningOutlined, text: 'Неизвестно' },
}