Skip to content

Commit f8902d8

Browse files
committed
hotfix: dropdown のリンクが開かない問題を修正
1 parent 900f011 commit f8902d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

web/components/Header.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ export default function Header(props: Props) {
3333
</button>
3434
<div className="dropdown-content z-[1] w-56 rounded-box bg-base-100 p-2 shadow">
3535
<p className="p-2 text-xs">CourseMate は現在ベータ版です。</p>
36-
<ul className="menu p-0">
36+
{/* biome-ignore lint/a11y/noNoninteractiveTabindex: daisyUI の仕様。tabIndex を消すとモバイルで開かないなどの問題が起こる */}
37+
<ul tabIndex={0} className="menu p-0">
3738
<li>
3839
<a
3940
href="https://forms.gle/WvFTbsJoHjGp9Qt88"

0 commit comments

Comments
 (0)