Skip to content

Commit

Permalink
Fix checks, and things that broke checks (missing href)
Browse files Browse the repository at this point in the history
  • Loading branch information
scosman committed Sep 30, 2024
1 parent 33f5cc2 commit 757ee00
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/web_ui/src/routes/(app)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
<div class="text-lg font-bold ml-1">Kiln AI</div>
</div>
<ul class="menu bg-base-200 text-base-content min-h-full w-60 p-4">
<li><a>Sidebar Item 1</a></li>
<li><a>Sidebar Item 2</a></li>
<li><a href="/">Sidebar Item 1</a></li>
<li><a href="/">Sidebar Item 2</a></li>
</ul>
</div>
</div>
2 changes: 1 addition & 1 deletion checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ echo "No misspellings found"


echo "${headerStart}Web UI: format, lint, check${headerEnd}"
changed_files=$(git diff --name-only)
changed_files=$(git diff --name-only --staged)
if [[ "$changed_files" == *"app/web_ui/"* ]]; then
echo "${headerStart}Checking Web UI: format, lint, check${headerEnd}"
cd app/web_ui
Expand Down

0 comments on commit 757ee00

Please sign in to comment.