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

changed initial values for crossmatch inputs to 20 #339

Merged
merged 2 commits into from
Nov 5, 2024
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions lightcurve/src/crossmatch_api/templates/crossmatch.html.jinja
claudiomansillab marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<p class="tw-text-black dark:tw-text-white"> Max. distance </p>
</div>
<div class="tw-grow tw-mx-4">
<input class="tw-w-full tw-h-[3px] tw-bg-blue-600 tw-rounded-lg tw-cursor-pointer dark:tw-bg-gray-700" type="range" id="slider" min="0" max="20" value="0" step="0.01">
<input class="tw-w-full tw-h-[3px] tw-bg-blue-600 tw-rounded-lg tw-cursor-pointer dark:tw-bg-gray-700" type="range" id="slider" min="0" max="20" value="20" step="0.01">
</div>
<div class="tw-flex">
<div class="">
Expand All @@ -24,8 +24,8 @@
</svg>
</div>
<div class="tw-border-b tw-flex">
<div type="number" id="customInput" value="0" contenteditable="true" class="tw-text-black dark:tw-text-white tw-inline-block tw-p-[5px] tw-h-[30px] tw-w-[80px] tw-overflow-hidden tw-whitespace-nowrap tw-outline-none focus:tw-outline-none">
0
<div type="number" id="customInput" value="20" contenteditable="true" class="tw-text-black dark:tw-text-white tw-inline-block tw-p-[5px] tw-h-[30px] tw-w-[80px] tw-overflow-hidden tw-whitespace-nowrap tw-outline-none focus:tw-outline-none">
20
</div>
<div class="tw-mt-[6px]">
<p class="tw-text-black dark:tw-text-white">
Expand Down
Loading