зеркало из https://github.com/microsoft/pai.git
Fix alerts data error in webportal (#5562)
This commit is contained in:
Родитель
46c56243a2
Коммит
f34c672222
|
@ -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.');
|
||||
|
|
Загрузка…
Ссылка в новой задаче