nicolium: import data button should be disabled when no file provided

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-02-21 15:22:38 +01:00
parent 1573e54eda
commit b4ea81ea0e

View File

@ -140,7 +140,7 @@ const DataImporter: React.FC<IDataImporter> = ({
)}
<FormActions>
<Button type='submit' theme='primary' disabled={isLoading}>
<Button type='submit' theme='primary' disabled={isLoading || !file}>
{intl.formatMessage(messages.submit)}
</Button>
</FormActions>