Skip to content

Commit

Permalink
(fix) allied express service listing on the connection config modal
Browse files Browse the repository at this point in the history
  • Loading branch information
danh91 committed Dec 19, 2023
1 parent c86b23e commit 6050780
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion modules/connectors/allied_express/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="karrio.allied_express",
version="2023.12.2",
version="2023.12.3",
description="Karrio - Allied Express Shipping Extension",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
12 changes: 6 additions & 6 deletions packages/ui/modals/connect-provider-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -417,9 +417,9 @@ export const ConnectProviderModal: React.FC<ConnectProviderModalComponent> = ({
>
{!field("service_type").required && <option value='none'></option>}
<option value={`R`}>{`Road service - R`}</option>
<option value={`P`}>{`Road service - P`}</option>
<option value={`PT`}>{`Road service - PT`}</option>
<option value={`PT2`}>{`Road service - PT2`}</option>
<option value={`P`}>{`Road parcel service - P`}</option>
<option value={`PT`}>{`Standard pallet service - PT`}</option>
<option value={`PT2`}>{`Oversized pallet service - PT2`}</option>
</SelectField>}

{field("billing_account").exists && <InputField label="Billing Account" value={payload.billing_account}
Expand Down Expand Up @@ -664,9 +664,9 @@ export const ConnectProviderModal: React.FC<ConnectProviderModalComponent> = ({
>
<option value='none'></option>
<option value={`R`}>{`Road service - R`}</option>
<option value={`P`}>{`Road service - P`}</option>
<option value={`PT`}>{`Road service - PT`}</option>
<option value={`PT2`}>{`Road service - PT2`}</option>
<option value={`P`}>{`Road parcel service - P`}</option>
<option value={`PT`}>{`Standard pallet service - PT`}</option>
<option value={`PT2`}>{`Oversized pallet service - PT2`}</option>
</SelectField>}

{"shipping_services" in connection_configs[carrier_name.toString()] &&
Expand Down

0 comments on commit 6050780

Please sign in to comment.