0
0
Fork 0

Prevent duplicate concurrent calls of /api/*/instance in web UI (#25663)

This commit is contained in:
mogaminsk 2023-07-02 18:12:16 +09:00 committed by GitHub
parent 0512537eb6
commit 5b46345459
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 16 additions and 4 deletions

View file

@ -17,15 +17,15 @@ import {
const initialState = ImmutableMap({
server: ImmutableMap({
isLoading: true,
isLoading: false,
}),
extendedDescription: ImmutableMap({
isLoading: true,
isLoading: false,
}),
domainBlocks: ImmutableMap({
isLoading: true,
isLoading: false,
isAvailable: true,
items: ImmutableList(),
}),