Skip to content

Commit

Permalink
feat(console): rm alarm status (tkestack#2144)
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-hnny committed Nov 3, 2022
1 parent fcf0558 commit 92090b5
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,20 +112,6 @@ export const AlarmRecordPanel = () => {
</Bubble>
);
}
},

{
key: 'status.failedReason',
header: t('发送状态'),
render: item => {
const failedReason = item?.status?.failedReason;

return (
<Bubble content={failedReason || ''}>
<Text theme={failedReason ? 'danger' : 'success'}>{failedReason ? t('发送失败') : t('已发送')}</Text>
</Bubble>
);
}
}
];

Expand Down

0 comments on commit 92090b5

Please sign in to comment.