Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 8c08d08

Browse files
committed
Fix lint issue
1 parent 0877674 commit 8c08d08

File tree

1 file changed

+1
-2
lines changed
  • client/web-sveltekit/src/routes/[...repo=reporev]/(validrev)/(code)

1 file changed

+1
-2
lines changed

client/web-sveltekit/src/routes/[...repo=reporev]/(validrev)/(code)/+layout.svelte

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@
6666
const fileTreeStore = createFileTreeStore({ fetchFileTreeData: fetchSidebarFileTree })
6767
let selectedTab: number | null = null
6868
let historyPanel: HistoryPanel
69-
let rootElement: HTMLElement | null = null
7069
let commitHistory: GitHistory_HistoryConnection | null
7170
let lastCommit: LastCommitFragment | null
7271
@@ -95,7 +94,7 @@
9594
$: sidebarWidth = `max(200px, ${$sidebarSize * 100}%)`
9695
</script>
9796

98-
<section bind:this={rootElement}>
97+
<section>
9998
<div class="sidebar" class:open={$sidebarOpen} style:min-width={sidebarWidth} style:max-width={sidebarWidth}>
10099
<header>
101100
<h3>

0 commit comments

Comments
 (0)