Skip to content

Commit

Permalink
Merge branch 'dev' into psp-8868
Browse files Browse the repository at this point in the history
  • Loading branch information
asanchezr authored Jul 17, 2024
2 parents 88c03e9 + 1377a11 commit 1a7ddde
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions source/backend/api/Pims.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<UserSecretsId>0ef6255f-9ea0-49ec-8c65-c172304b4926</UserSecretsId>
<Version>5.4.0-84.49</Version>
<Version>5.4.0-84.49</Version>
<Version>5.4.0-84.52</Version>
<Version>5.4.0-84.52</Version>
<AssemblyVersion>5.4.0.84</AssemblyVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ProjectGuid>16BC0468-78F6-4C91-87DA-7403C919E646</ProjectGuid>
Expand Down
2 changes: 1 addition & 1 deletion source/frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "5.4.0-84.49",
"version": "5.4.0-84.52",
"private": true,
"dependencies": {
"@bcgov/bc-sans": "1.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const FeeDeterminationSubForm: React.FunctionComponent<IFeeDeterminationSubFormP
</SectionField>

<SectionField
label="Sugested fee"
label="Suggested fee"
tooltip="Licence Administration Fee (LAF) *: If the financial gain far outweighs the public benefit, Fair Market Value should be considered over Licence Administration Fee."
labelWidth="2"
contentWidth="8"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ exports[`LeaseFeeDeterminationSubForm component > renders as expected 1`] = `
<label
class="c2"
>
Sugested fee:
Suggested fee:
<span>
<span
class="tooltip-icon"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const UpdateCompensationRequisitionForm: React.FC<CompensationRequisitionFormPro
}, [activitiesUpdated]);

const handleSubmit = async (values: CompensationRequisitionFormModel) => {
if (values.status === 'final') {
if (initialValues.status !== 'final' && values.status === 'final') {
setShowModal(true);
} else {
await onSave(values);
Expand Down

0 comments on commit 1a7ddde

Please sign in to comment.