mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-24 12:35:31 +00:00
fix: email type
This commit is contained in:
parent
ce922607bd
commit
e322d931fd
1 changed files with 1 additions and 1 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<script lang="ts">
|
||||
export let type: 'text' | 'number' | 'tel' | 'e-mail' | 'password' = 'text';
|
||||
export let type: 'text' | 'number' | 'tel' | 'email' | 'password' = 'text';
|
||||
const typeAction = (node: HTMLInputElement) => {
|
||||
node.type = type;
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue