"...targets/git@developer.sourcefind.cn:gaoqiong/migraphx.git" did not exist on "07848b28dbc135f34a4c1bf57dc9af039d7b31c6"
Unverified Commit 87c856c3 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #299 from ollama-webui/sidebar-button-fix

fix: sidebar button click register issue
parents 657318ae 339c9125
......@@ -382,11 +382,6 @@
on:click={() => {
showDropdown = !showDropdown;
}}
on:focusout={() => {
setTimeout(() => {
showDropdown = false;
}, 150);
}}
>
<div class=" self-center mr-3">
<img
......@@ -409,6 +404,7 @@
class="flex py-2.5 px-3.5 w-full hover:bg-gray-800 transition"
on:click={() => {
goto('/admin');
showDropdown = false;
}}
>
<div class=" self-center mr-3">
......@@ -470,6 +466,7 @@
on:click={() => {
localStorage.removeItem('token');
location.href = '/auth';
showDropdown = false;
}}
>
<div class=" self-center mr-3">
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment