Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Dosant committed Mar 5, 2020
1 parent ecd6a1d commit 16e0bc0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@ export function FlyoutDrilldownWizard<
);

const isActionValid = (): boolean => {
if (!wizardConfig.name) return false;
if (!wizardConfig.actionFactory) return false;
if (!wizardConfig.actionConfig) return false;

return wizardConfig.actionFactory.isValid(wizardConfig.name, wizardConfig.actionConfig);
return wizardConfig.actionFactory.isValid(wizardConfig.actionConfig);
};

const footer = (
Expand Down

0 comments on commit 16e0bc0

Please sign in to comment.