feat(S&P): fix navigation bar if warehouses or branches feature.

This commit is contained in:
elforjani13
2022-03-07 18:43:21 +02:00
parent b26b4c5491
commit 87a56dcd95
8 changed files with 37 additions and 34 deletions

View File

@@ -39,10 +39,10 @@ export default function BranchSuggestField({
<MenuItem
// active={modifiers.active}
disabled={modifiers.disabled}
label={branch.code.toString()}
label={branch.code}
key={branch.id}
onClick={handleClick}
text={branch.name.toString()}
text={branch.name}
/>
);
};