1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Add onClose to ConfirmDialog for consistency

This commit is contained in:
viown 2025-02-23 22:35:25 +03:00
parent 560881bdea
commit 33ac6d75ea

View file

@ -27,7 +27,7 @@ const ConfirmDialog: FC<ConfirmDialogProps> = ({
onConfirm,
...dialogProps
}) => (
<Dialog {...dialogProps}>
<Dialog onClose={onCancel} {...dialogProps}>
<DialogTitle>
{title}
</DialogTitle>