Can move entries between accounts

This commit is contained in:
2025-04-28 19:10:46 +02:00
parent f2a180e69f
commit e2e8f9ce5e
3 changed files with 61 additions and 4 deletions

View File

@ -23,7 +23,7 @@ export function SelectAccountDialog(p: {
onClose: () => void;
onSelected: (c: Account) => void;
title: string;
description: string;
description: string | React.ReactElement;
confirmButton?: string;
excludedAccounts?: Account[];
}): React.ReactElement {