Skip to content

Commit

Permalink
[INSPECT-315] BUGFIX** 315 bilge validation fix (#317)
Browse files Browse the repository at this point in the history
* Add conditional so Validation doesnt trigger field in area where field isn't present

* Update build number
  • Loading branch information
LocalNewsTV authored Jun 13, 2024
1 parent 1e7349c commit 25f2b29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ipad.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2059,7 +2059,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.8;
MARKETING_VERSION = 2.8.1;
PRODUCT_BUNDLE_IDENTIFIER = ca.bc.gov.InvasivesBC;
PRODUCT_NAME = Inspect;
PROVISIONING_PROFILE_SPECIFIER = "InvasivesBC Muscles - 2023/24";
Expand Down Expand Up @@ -2089,7 +2089,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 2.8;
MARKETING_VERSION = 2.8.1;
PRODUCT_BUNDLE_IDENTIFIER = ca.bc.gov.InvasivesBC;
PRODUCT_NAME = Inspect;
PROVISIONING_PROFILE_SPECIFIER = "InvasivesBC Muscles - 2023/24";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ class WatercraftInspectionViewController: BaseViewController {
Validation(
type: .watercraftHasDrainplugsInteracted,
errorMessage: .errorWatercraftHasDrainplugsInteracted,
condition: !model.watercraftHasDrainplugsInteracted,
condition: isPassportHolderNewOrLaunched && !model.watercraftHasDrainplugsInteracted,
section: .inspectionDetails
),
Validation(
Expand Down

0 comments on commit 25f2b29

Please sign in to comment.