diff --git a/.github/workflows/system-testing.yml b/.github/workflows/system-testing.yml index cc41ccac..cef9c71e 100644 --- a/.github/workflows/system-testing.yml +++ b/.github/workflows/system-testing.yml @@ -30,11 +30,11 @@ jobs: echo "Parsing PR body for dependencies..." # Parse PROXY dependency - PROXY_LOCATION=$(echo '${{ github.event.pull_request.body }}' | grep '^PROXY:' | sed 's/PROXY: *//' | xargs) + PROXY_LOCATION=$(echo '${{ github.event.pull_request.body }}' | grep '^PROXY:' | sed 's/PROXY: *//' | tr -d '\r' | sed 's/^[[:space:]]*//;s/[[:space:]]*$//' | xargs) echo "Proxy location: $PROXY_LOCATION" # Parse CHARGING dependency - CHARGING_LOCATION=$(echo '${{ github.event.pull_request.body }}' | grep '^CHARGING:' | sed 's/CHARGING: *//' | xargs) + CHARGING_LOCATION=$(echo '${{ github.event.pull_request.body }}' | grep '^CHARGING:' | sed 's/CHARGING: *//' | tr -d '\r' | sed 's/^[[:space:]]*//;s/[[:space:]]*$//' | xargs) echo "Charging location: $CHARGING_LOCATION" # Parse TM_VERSION diff --git a/src/app/pages/product-inventory/product-inventory.component.html b/src/app/pages/product-inventory/product-inventory.component.html index 0b06cffd..473ce463 100644 --- a/src/app/pages/product-inventory/product-inventory.component.html +++ b/src/app/pages/product-inventory/product-inventory.component.html @@ -19,7 +19,7 @@