IO-2971 add null coalescing

This commit is contained in:
Patrick Fic
2024-10-11 16:05:30 -04:00
parent 7fc6556866
commit 7879591bcf
3 changed files with 3 additions and 3 deletions

View File

@@ -200,7 +200,7 @@ export function PayableExportAll({
);
return (
<Button onClick={handleQbxml} loading={loading} disabled={disabled || billids.length > 10}>
<Button onClick={handleQbxml} loading={loading} disabled={disabled || billids?.length > 10}>
{t("jobs.actions.exportselected")}
</Button>
);