Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ class BackfillCreateAction @Inject constructor(
input(
classes = "block w-full rounded-md bg-white px-3 py-1.5 text-base text-gray-900 outline outline-1 -outline-offset-1 outline-gray-300 placeholder:text-gray-400 focus:outline focus:outline-2 focus:-outline-offset-2 focus:outline-indigo-600 sm:text-sm/6",
) {
type = InputType.number
type = InputType.text
name = field
id = field
attributes["autocomplete"] = field
Expand All @@ -279,7 +279,7 @@ class BackfillCreateAction @Inject constructor(
input(
classes = "block w-full rounded-md bg-white px-3 py-1.5 text-base text-gray-900 outline outline-1 -outline-offset-1 outline-gray-300 placeholder:text-gray-400 focus:outline focus:outline-2 focus:-outline-offset-2 focus:outline-indigo-600 sm:text-sm/6",
) {
type = InputType.number
type = InputType.text
name = field
id = field
attributes["autocomplete"] = field
Expand All @@ -302,7 +302,7 @@ class BackfillCreateAction @Inject constructor(
}
div("mt-2") {
input(classes = "block w-full rounded-md bg-white px-3 py-1.5 text-base text-gray-900 outline outline-1 -outline-offset-1 outline-gray-300 placeholder:text-gray-400 focus:outline focus:outline-2 focus:-outline-offset-2 focus:outline-indigo-600 sm:text-sm/6") {
type = InputType.number
type = InputType.text
name = field
id = field
attributes["autocomplete"] = field
Expand All @@ -317,7 +317,7 @@ class BackfillCreateAction @Inject constructor(
}
div("mt-2") {
input(classes = "block w-full rounded-md bg-white px-3 py-1.5 text-base text-gray-900 outline outline-1 -outline-offset-1 outline-gray-300 placeholder:text-gray-400 focus:outline focus:outline-2 focus:-outline-offset-2 focus:outline-indigo-600 sm:text-sm/6") {
type = InputType.number
type = InputType.text
name = field
id = field
attributes["autocomplete"] = field
Expand Down