Skip to content

Commit

Permalink
'
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrothwell committed Jan 9, 2025
1 parent 48b6d6b commit 2b5a919
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dev_push_to_s3_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: dev Push to S3 dev bucket
on:
push:
branches:
- fix/li-records-issue
- fix/more-li-records-issues
jobs:
build:

Expand Down
6 changes: 3 additions & 3 deletions src/stores/LiStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ export const useLiStore = defineStore('LiStore', {
let baseUrl = 'https://phl.carto.com/api/v2/sql?q=';
const eclipse_location_id = feature.properties.eclipse_location_id.replace(/\|/g, "', '");
const streetaddress = feature.properties.street_address;
const opaQuery = feature.properties.opa_account_num ? ` AND opa_account_num IN ('${ feature.properties.opa_account_num}')` : ``;
const opaQuery = feature.properties.opa_account_num ? ` OR opa_account_num IN ('${ feature.properties.opa_account_num}')` : ``;
const pwd_parcel_id = feature.properties.pwd_parcel_id;
const addressId = feature.properties.li_address_key.replace(/\|/g, "', '");

Expand Down Expand Up @@ -314,7 +314,7 @@ export const useLiStore = defineStore('LiStore', {
let baseUrl = 'https://phl.carto.com/api/v2/sql?q=';
const eclipse_location_id = feature.properties.eclipse_location_id.replace(/\|/g, "', '");
const streetaddress = feature.properties.street_address;
const opaQuery = feature.properties.opa_account_num ? ` AND opa_account_num IN ('${ feature.properties.opa_account_num}')` : ``;
const opaQuery = feature.properties.opa_account_num ? ` OR opa_account_num IN ('${ feature.properties.opa_account_num}')` : ``;
const pwd_parcel_id = feature.properties.pwd_parcel_id;
const addressId = feature.properties.li_address_key.replace(/\|/g, "', '");

Expand Down Expand Up @@ -362,7 +362,7 @@ export const useLiStore = defineStore('LiStore', {
let baseUrl = 'https://phl.carto.com/api/v2/sql?q=';
const eclipse_location_id = feature.properties.eclipse_location_id.replace(/\|/g, "', '");
const streetaddress = feature.properties.street_address;
const opaQuery = feature.properties.opa_account_num ? ` AND opa_account_num IN ('${ feature.properties.opa_account_num}')` : ``;
const opaQuery = feature.properties.opa_account_num ? ` OR opa_account_num IN ('${ feature.properties.opa_account_num}')` : ``;
const pwd_parcel_id = feature.properties.pwd_parcel_id;
const addressId = feature.properties.li_address_key.replace(/\|/g, "', '");

Expand Down

0 comments on commit 2b5a919

Please sign in to comment.