fix: timePerScreen setting and third party source labeling
This commit is contained in:
parent
a4d629d664
commit
8389ed8e36
4 changed files with 10 additions and 9 deletions
|
@ -25,10 +25,10 @@
|
|||
export let invalid: boolean | undefined = undefined;
|
||||
export let minlength: string | undefined = undefined;
|
||||
export let onChange: (() => void) | undefined = undefined;
|
||||
export let onInput: (() => void) | undefined = undefined;
|
||||
export let onInput: ((e: Event) => void) | undefined = undefined;
|
||||
|
||||
const onInputHandler = () => {
|
||||
onInput?.();
|
||||
const onInputHandler = (e: Event) => {
|
||||
onInput?.(e);
|
||||
};
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue