trace detail dynamic height not properly adjusting

This commit is contained in:
Peter Olu 2022-05-16 00:39:09 +01:00
parent 866422e8b7
commit 45626142ab
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,8 @@ export default defineComponent({
</script>
<style lang="scss" scoped>
.trace-detail {
height: 100%;
height: 600px;
// height: 100%;
width: 100%;
overflow: hidden;
}

View File

@ -194,7 +194,6 @@ const arrayOfFilters = ref<filtersObject[]>([
},
]);
const activeFilter = ref<string>("");
const queriedFilter = computed(() => traceStore.activeFilter);
function setFilter(filter: string) {
activeFilter.value = filter;
}