mirror of
https://github.com/zadam/trilium.git
synced 2025-11-12 08:15:52 +01:00
fix(react): button not working as submit
This commit is contained in:
@@ -4,6 +4,7 @@ interface ButtonProps {
|
|||||||
text: string;
|
text: string;
|
||||||
className?: string;
|
className?: string;
|
||||||
keyboardShortcut?: string;
|
keyboardShortcut?: string;
|
||||||
|
/** Called when the button is clicked. If not set, the button will submit the form (if any). */
|
||||||
onClick?: () => void;
|
onClick?: () => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -20,7 +21,7 @@ export default function Button({ className, text, onClick, keyboardShortcut }: B
|
|||||||
return (
|
return (
|
||||||
<button
|
<button
|
||||||
className={classes.join(" ")}
|
className={classes.join(" ")}
|
||||||
type="button"
|
type={onClick ? "button" : "submit"}
|
||||||
onClick={onClick}
|
onClick={onClick}
|
||||||
ref={buttonRef}
|
ref={buttonRef}
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user