fix/select customer
This commit is contained in:
parent
de44231051
commit
0292965366
2 changed files with 1 additions and 2 deletions
|
|
@ -33,7 +33,7 @@ export const SelectCustomer: FC<{
|
|||
{uniqBy(integrations, (u) => u?.customer?.name)
|
||||
.filter((f) => f.customer?.name)
|
||||
.map((p) => (
|
||||
<option key={p.customer?.id} value={p.customer?.id}>
|
||||
<option key={p.customer?.id} value={p.customer?.id} data-sentry-mask>
|
||||
{t('customer', 'Customer:')}
|
||||
{p.customer?.name}
|
||||
</option>
|
||||
|
|
|
|||
|
|
@ -473,7 +473,6 @@ export const ManageModal: FC<AddEditModalProps> = (props) => {
|
|||
<SelectCustomer
|
||||
onChange={changeCustomer}
|
||||
integrations={integrations}
|
||||
data-sentry-mask
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue