Skip to content
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.11.0-106.36</Version>
<AssemblyVersion>5.11.0.106</AssemblyVersion>
<Version>5.11.1-106.36</Version>
<AssemblyVersion>5.11.1.106</AssemblyVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ProjectGuid>{16BC0468-78F6-4C91-87DA-7403C919E646}</ProjectGuid>
<TargetFramework>net8.0</TargetFramework>
Expand Down
2 changes: 1 addition & 1 deletion source/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.11.0-106.36",
"version": "5.11.1-106.36",
"private": true,
"dependencies": {
"@bcgov/bc-sans": "1.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const FilePropertiesLayer: React.FunctionComponent = () => {
key={uuidv4()}
position={draftPoint.location}
icon={
draftPoint.isActive
draftPoint.isActive !== false
? getDraftIcon((index + 1).toString())
: getDisabledDraftIcon((index + 1).toString())
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export const SelectedPropertyRow: React.FunctionComponent<ISelectedPropertyRowPr
<OverflowTip fullText={propertyIdentifier} className="pl-3"></OverflowTip>
</div>
</Col>
<Col md={5}>
<Col md={showDisable ? 4 : 5}>
<InlineInput
className="mb-0 w-100"
label=""
Expand Down
Loading