Fix alerts data error in webportal (#5562)

This commit is contained in:
Yi Yi 2021-07-14 17:21:24 +08:00 коммит произвёл GitHub
Родитель 46c56243a2
Коммит f34c672222
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 4 удалений

Просмотреть файл

@ -59,11 +59,8 @@ export const NotificationButton = () => {
const data = await result.json().catch(() => {
throw new Error('Get alerts json failed');
});
if (data.status !== 'success') {
throw new Error('Failed to get alerts data');
}
if (!canceled) {
setAlertItems(data.data);
setAlertItems(data);
}
} catch (err) {
throw new Error('Failed to get alerts data from REST Server.');