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

테이블 스키마 input 태그 중 숫자 필드들에 제약 및 기본값 추가 #73

Merged
merged 1 commit into from
Aug 7, 2024
Merged
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
4 changes: 2 additions & 2 deletions src/main/resources/templates/table-schema.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ <h2 class="text-2xl font-bold text-gray-800 mb-6">테이블 스키마 만들기<
</div>
<div class="flex items-center">
<label>
<input type="number" th:field="*{schemaFields[__${iterStat.index}__].blankPercent}" class="blank-percent-id blank-percent-name mt-1 block w-full border-gray-300 rounded-md shadow-sm" required>
<input type="number" min="0" max="100" th:field="*{schemaFields[__${iterStat.index}__].blankPercent}" class="blank-percent-id blank-percent-name mt-1 block w-full border-gray-300 rounded-md shadow-sm" required>
</label>
</div>
<div class="flex items-center">
Expand Down Expand Up @@ -91,7 +91,7 @@ <h2 class="text-2xl font-bold text-gray-800 mb-6">테이블 스키마 만들기<
<div class="grid grid-cols-3 gap-4 mb-4">
<div class="flex items-center space-x-4">
<label for="rowCount" class="block text-sm font-medium text-gray-500 w-1/6">열 개수</label>
<input type="number" id="rowCount" name="rowCount" class="mt-1 block w-full border-gray-300 rounded-md shadow-sm">
<input type="number" min="1" max="1000" value="1" id="rowCount" name="rowCount" class="mt-1 block w-full border-gray-300 rounded-md shadow-sm">
</div>
<div class="flex items-center space-x-4">
<label for="fileType" class="block text-sm font-medium text-gray-500 w-1/6">Format</label>
Expand Down