mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-14 11:21:29 +00:00
fix: remove the event stack from app store and watch for duration and utc changes (#489)
This commit is contained in:
@@ -118,8 +118,8 @@ limitations under the License. -->
|
||||
}
|
||||
}
|
||||
|
||||
async function getEndpoints(id?: string) {
|
||||
const resp = await eventStore.getEndpoints(id);
|
||||
async function getEndpoints() {
|
||||
const resp = await eventStore.getEndpoints();
|
||||
if (!resp) {
|
||||
return;
|
||||
}
|
||||
@@ -129,8 +129,8 @@ limitations under the License. -->
|
||||
}
|
||||
state.endpoint = eventStore.endpoints[0];
|
||||
}
|
||||
async function getInstances(id?: string) {
|
||||
const resp = await eventStore.getInstances(id);
|
||||
async function getInstances() {
|
||||
const resp = await eventStore.getInstances();
|
||||
if (resp.errors) {
|
||||
ElMessage.error(resp.errors);
|
||||
return;
|
||||
|
Reference in New Issue
Block a user