Skip to content

Commit

Permalink
fix pre-commit bug (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
eriktaubeneck authored Oct 22, 2024
1 parent 7efe86a commit 4529e4a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions server/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact=true
4 changes: 2 additions & 2 deletions server/app/query/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,12 @@ export default function Page() {
<>
<div className="md:flex md:items-center md:justify-between">
<div className="min-w-0 flex-1">
<h2 className="text-2xl font-bold leading-7 text-gray-900 dark:text-gray-100 sm:truncate sm:text-3xl sm:tracking-tight">
<h2 className="text-2xl font-bold leading-7 text-gray-900 sm:truncate sm:text-3xl sm:tracking-tight dark:text-gray-100">
Current Queries
</h2>

{Object.keys(dataByQuery).length == 0 && (
<h3 className="text-lg font-bold leading-7 text-gray-900 dark:text-gray-100 sm:truncate sm:text-xl sm:tracking-tight">
<h3 className="text-lg font-bold leading-7 text-gray-900 sm:truncate sm:text-xl sm:tracking-tight dark:text-gray-100">
None currently running.
</h3>
)}
Expand Down
2 changes: 1 addition & 1 deletion server/app/query/view/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export default function QueryPage({ params }: { params: { id: string } }) {
<dt className="text-sm font-medium leading-6 text-gray-900 dark:text-gray-100">
Params:
</dt>
<dd className="mt-2 text-sm text-gray-900 dark:text-gray-100 sm:col-span-2 sm:mt-0">
<dd className="mt-2 text-sm text-gray-900 sm:col-span-2 sm:mt-0 dark:text-gray-100">
<ul className="divide-y divide-gray-200 rounded-md border border-gray-200">
{queryParams.map(([key, value]) => {
return (
Expand Down

0 comments on commit 4529e4a

Please sign in to comment.