Skip to content

Commit

Permalink
fix: linting failure due to equality operator (#83)
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Alex Bance committed Jun 9, 2021
1 parent b0f6213 commit 6533a72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<ImportExportXml version="9.2.21052.127" SolutionPackageVersion="9.2" languagecode="1033" generatedBy="CrmLive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<ImportExportXml version="9.2.21053.132" SolutionPackageVersion="9.2" languagecode="1033" generatedBy="CrmLive" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<SolutionManifest>
<UniqueName>devhub_DevelopmentHub_Develop</UniqueName>
<LocalizedNames>
Expand Down Expand Up @@ -429,7 +429,7 @@
<Dependent type="62" schemaName="devhub_DevelopmentHub" />
</MissingDependency>
<MissingDependency>
<Required type="66" schemaName="MscrmControls.FlipSwitch.FlipSwitchControl" displayName="MscrmControls.FlipSwitch.FlipSwitchControl" solution="CustomControlsCore (9.2.21052.00127)" />
<Required type="66" schemaName="MscrmControls.FlipSwitch.FlipSwitchControl" displayName="MscrmControls.FlipSwitch.FlipSwitchControl" solution="CustomControlsCore (9.2.21053.00132)" />
<Dependent type="60" displayName="Information" parentDisplayName="Solution Merge" id="{6f14717f-673c-45a3-b862-4c3e7408be3f}" />
</MissingDependency>
</MissingDependencies>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ namespace DevelopmentHub.Develop {
);
}
// If the toMerge solution component is "shell only"
if (match.rootcomponentbehavior == 2) {
if (match.rootcomponentbehavior === 2) {
return false;
}
}
Expand Down

0 comments on commit 6533a72

Please sign in to comment.