This is an automated email from the ASF dual-hosted git repository. leezng pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/master by this push: new 8ff9d905c [INLONG-7153][Dashboard] The data subscription status code shows the specific meaning (#7155) 8ff9d905c is described below commit 8ff9d905c92e8e6bcc1733bf241a796c6c107b0b 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', }, ];