Skip to content

Commit

Permalink
fix(LogBrowser): overlapping scrollbar on log list
Browse files Browse the repository at this point in the history
  • Loading branch information
BreadGenie committed Nov 30, 2024
1 parent 58bd325 commit 3983bf6
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions dashboard/src2/pages/devtools/log-browser/LogList.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
<template>
<div class="m-4 mr-0 flex h-full w-1/4 flex-col">
<FormControl class="mb-4" label="Search log files" v-model="searchLogQuery">
<FormControl
class="mb-4 mr-4"
label="Search log files"
v-model="searchLogQuery"
>
<template #prefix>
<i-lucide-search class="h-4 w-4 text-gray-500" />
</template>
</FormControl>
<div class="h-[81.5vh] space-y-2 overflow-auto">
<div class="h-[81.5vh] space-y-2 overflow-auto pr-4">
<div
v-if="$resources.benchLogs?.loading || $resources.siteLogs?.loading"
class="mt-20 flex justify-center space-x-2 text-sm text-gray-700"
Expand Down

0 comments on commit 3983bf6

Please sign in to comment.