Исправила отображения дат, статусов, врача

This commit is contained in:
Daria Golova
2023-08-16 14:04:21 +03:00
parent 37f4fdf507
commit c866662384
5 changed files with 62 additions and 27 deletions

View File

@@ -48,10 +48,29 @@ export const statuses = [
label: "Не принят",
icon: not_accepted,
value: "not_accepted",
class: "not-accepted",
},
{
id: 1,
label: "Принят",
icon: accepted,
value: "accepted",
class: "accepted",
},
{
id: 2,
label: "Отказ",
icon: rejected,
value: "rejected",
class: "rejected",
},
{
id: 3,
label: "На приеме",
icon: reception,
value: "reception",
class: "reception",
},
{ id: 1, label: "Принят", icon: accepted, value: "accepted" },
{ id: 2, label: "Отказ", icon: rejected, value: "rejected" },
{ id: 3, label: "На приеме", icon: reception, value: "reception" },
],
},
{