mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-10-15 12:49:17 +00:00
feat: Implement templates for dashboards (#28)
This commit is contained in:
@@ -148,7 +148,7 @@ const state = reactive<any>({
|
||||
|
||||
init();
|
||||
async function init() {
|
||||
const resp = await logStore.queryLogsByKeywords();
|
||||
const resp = await logStore.getLogsByKeywords();
|
||||
|
||||
if (resp.errors) {
|
||||
ElMessage.error(resp.errors);
|
||||
|
@@ -83,7 +83,8 @@ searchTasks();
|
||||
// }
|
||||
async function searchTasks() {
|
||||
profileStore.setConditions({
|
||||
serviceId: selectorStore.currentService.id,
|
||||
serviceId:
|
||||
(selectorStore.currentService && selectorStore.currentService.id) || "",
|
||||
endpointName: endpointName.value,
|
||||
});
|
||||
const res = await profileStore.getTaskList();
|
||||
|
Reference in New Issue
Block a user