This commit is contained in:
@ -26,7 +26,7 @@ export function FileInput(
|
||||
onClick={() => fileInput.current?.click()}
|
||||
{...p}
|
||||
value={""}
|
||||
onChange={() => {}}
|
||||
onChange={console.log}
|
||||
type="file"
|
||||
slotProps={{
|
||||
input: {
|
||||
@ -44,7 +44,9 @@ export function FileInput(
|
||||
{filesize(p.value.size)}
|
||||
<Tooltip
|
||||
title="Remove attached file"
|
||||
onClick={(e) => e.stopPropagation()}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation();
|
||||
}}
|
||||
>
|
||||
<IconButton
|
||||
onClick={(e) => {
|
||||
|
Reference in New Issue
Block a user