Skip to content

Commit 52dfdd7

Browse files
committed
Fix date input component
1 parent 8852f14 commit 52dfdd7

File tree

1 file changed

+1
-17
lines changed

1 file changed

+1
-17
lines changed

client/src/components/InputDate.vue

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -245,22 +245,6 @@ watch(internalDate, (newLocalDate: Date | null) => updateModelValue(newLocalDate
245245
}),
246246
}"
247247
/>
248-
<input
249-
type="date"
250-
:value="dateModelValue"
251-
:required="config.required"
252-
class="shadow-input"
253-
tabindex="-1"
254-
/>
255248
</template>
256249

257-
<style scoped>
258-
.shadow-input {
259-
position: absolute;
260-
inset: 0;
261-
width: 5rem;
262-
height: 4rem;
263-
/* background: red;
264-
pointer-events: none; */
265-
}
266-
</style>
250+
<style scoped></style>

0 commit comments

Comments
 (0)