feat: implement MySQL driver with shell-based import/export and add database transfer UI component

This commit is contained in:
Ümit Tunç
2026-04-24 12:29:20 +03:00
parent 60cd2fe051
commit f38f67189e
3 changed files with 24 additions and 9 deletions
+5 -1
View File
@@ -98,7 +98,11 @@ const TransferContent: React.FC<TransferContentProps> = ({ mode = 'both' }) => {
<Close fontSize="small" />
</IconButton>
}
sx={{ borderRadius: 2, boxShadow: '0 4px 12px rgba(0,0,0,0.05)' }}
sx={{
borderRadius: 2,
boxShadow: '0 4px 12px rgba(0,0,0,0.05)',
'& .MuiAlert-message': { whiteSpace: 'pre-line' }
}}
>
{success || error}
</Alert>