From 55d9e8734d8bf694fa7c40f013642252a234386d Mon Sep 17 00:00:00 2001 From: Shivanshu Patel Date: Thu, 15 Dec 2022 15:08:58 +0000 Subject: [PATCH] feat: add status color code (#55) * feat: add status color code * feat: bump version --- app/constants/status.js | 8 +++++++- package.json | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/app/constants/status.js b/app/constants/status.js index 58e83e61..37483403 100644 --- a/app/constants/status.js +++ b/app/constants/status.js @@ -18,7 +18,7 @@ const status = { styleClass: 'govuk-tag--red' }, NOTAGREED: { - styleClass: 'govuk-tag--red' + styleClass: 'govuk-tag--pink' }, ACCEPTED: { styleClass: 'govuk-tag--purple' @@ -28,6 +28,12 @@ const status = { }, CLAIMED: { styleClass: 'govuk-tag--blue' + }, + INCHECK: { + styleClass: 'govuk-tag--orange' + }, + READYTOPAY: { + styleClass: 'govuk-tag' } } diff --git a/package.json b/package.json index d0b08920..c492c2cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ffc-ahwr-backoffice", - "version": "1.14.6", + "version": "1.14.7", "description": "Back office of the health and welfare of your livestock", "homepage": "https://github.com/DEFRA/ffc-ahwr-backoffice", "main": "app/index.js",