This is an automated email from the ASF dual-hosted git repository. dockerzhang pushed a commit to branch branch-1.5 in repository https://gitbox.apache.org/repos/asf/inlong.git
commit d4b128d63304b5e85263ff07833f2cf1473c537f Author: Lizhen <88174078+bluew...@users.noreply.github.com> AuthorDate: Thu Jan 5 14:22:29 2023 +0800 [INLONG-7153][Dashboard] The data subscription status code shows the specific meaning (#7155) --- inlong-dashboard/src/metas/consumes/common/status.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inlong-dashboard/src/metas/consumes/common/status.tsx b/inlong-dashboard/src/metas/consumes/common/status.tsx index 83efe863e..ca7e21e48 100644 --- a/inlong-dashboard/src/metas/consumes/common/status.tsx +++ b/inlong-dashboard/src/metas/consumes/common/status.tsx @@ -38,22 +38,22 @@ export const statusList: StatusProp[] = [ }, { label: i18n.t('pages.Approvals.status.Processing'), - value: 11, + value: 101, type: 'warning', }, { label: i18n.t('pages.Approvals.status.Rejected'), - value: 20, + value: 102, type: 'error', }, { label: i18n.t('pages.Approvals.status.Ok'), - value: 21, + value: 103, type: 'success', }, { label: i18n.t('pages.Approvals.status.Canceled'), - value: 22, + value: 104, type: 'error', }, ];