mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-15 01:33:54 +00:00
cleanup
This commit is contained in:
parent
b68cd26511
commit
4ea4a2457d
@ -186,7 +186,7 @@ limitations under the License. -->
|
||||
import Filter from "../related/trace/Filter.vue";
|
||||
import Header from "../related/log/Header.vue";
|
||||
|
||||
import { reactive, ref, computed, watch, onMounted } from "vue";
|
||||
import { reactive, ref, computed, watch } from "vue";
|
||||
import { useRoute } from "vue-router";
|
||||
import { useDashboardStore } from "@/store/modules/dashboard";
|
||||
import { useAppStoreWithOut } from "@/store/modules/app";
|
||||
@ -214,17 +214,11 @@ const traceStore = useTraceStore();
|
||||
const params = useRoute().params;
|
||||
const selectedSelector = ref<string>("");
|
||||
const showFilter = computed(() => dashboardStore.showTraceTools);
|
||||
const showLogHeader = computed(() => dashboardStore.currentTabName === "Log");
|
||||
const showLogHeader = computed(() => dashboardStore.showLogTools);
|
||||
const currentTraceView = computed(() => traceStore.currentView);
|
||||
const { query } = useRoute();
|
||||
dashboardStore.setViewMode(query["fullview"] === "true");
|
||||
onMounted(() => {
|
||||
setTimeout(() => {
|
||||
console.log(
|
||||
showFilter.value
|
||||
);
|
||||
}, 1000)
|
||||
})
|
||||
|
||||
const toolIcons = ref<{ name: string; content: string; id: string }[]>(
|
||||
EndpointRelationTools
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user