Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add button="type" where missing #69

Merged
merged 1 commit into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions server/app/login/GitHubOAuthComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export default function GitHubOAuthComponent() {

return (
<button
type="button"
onClick={handleGitHubLogin}
className="flex w-full items-center justify-center gap-3 rounded-md bg-[#24292F] px-3 py-2 text-white focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-[#24292F]"
>
Expand Down
1 change: 1 addition & 0 deletions server/app/query/create/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@ function IPAForm({
/>
</div>
<button
type="button"
className="relative ml-1 cursor-default rounded-md bg-white px-3 py-2.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-600 sm:text-sm sm:leading-6"
onClick={(e) => {
e.preventDefault();
Expand Down
2 changes: 2 additions & 0 deletions server/app/query/view/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ export default function QueryPage({ params }: { params: { id: string } }) {

<div className="mx-auto mt-10 w-full max-w-7xl overflow-hidden rounded-lg bg-slate-50 text-left shadow dark:bg-slate-950">
<button
type="button"
onClick={flipStatsHidden}
className="size-full border-b border-gray-300 dark:border-gray-700"
>
Expand Down Expand Up @@ -246,6 +247,7 @@ export default function QueryPage({ params }: { params: { id: string } }) {
})}

<button
type="button"
onClick={flipLogsHidden}
className="size-full border-b border-gray-300 dark:border-gray-700"
>
Expand Down
Loading