Commit 9922fb1eae59f5be5fc5f83e03234ebc99c63ff8
Merge branch 'ft' into 'main_dev'
fix: 修改设备详情里的告警记录告警等级危险改为紧急 See merge request yunteng/thingskit-front!837
Showing
3 changed files
with
3 additions
and
3 deletions
... | ... | @@ -333,7 +333,7 @@ export const childDeviceColumns: BasicColumn[] = [ |
333 | 333 | |
334 | 334 | export const alarmLevel = (type: string): string => { |
335 | 335 | if (type === 'CRITICAL') { |
336 | - return '危险'; | |
336 | + return '紧急'; | |
337 | 337 | } else if (type === 'MAJOR') { |
338 | 338 | return '重要'; |
339 | 339 | } else if (type === 'MINOR') { | ... | ... |