Skip to content

Commit

Permalink
Fixed typo in button code name
Browse files Browse the repository at this point in the history
Fixed typo in button code name
  • Loading branch information
HotCakeX committed Feb 27, 2025
1 parent 1376a4e commit 857a941
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AppControl Manager/Pages/CreatePolicy.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
</controls:SettingsCard>

<controls:SettingsCard x:Uid="NoMSRecommendedBlockRules">
<ToggleSwitch x:Name="AllowMicrosoftNoBockRules" />
<ToggleSwitch x:Name="AllowMicrosoftNoBlockRules" />
</controls:SettingsCard>

</controls:SettingsExpander.Items>
Expand Down
2 changes: 1 addition & 1 deletion AppControl Manager/Pages/CreatePolicy.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ private async void AllowMicrosoftCreate_Click(object sender, RoutedEventArgs e)
bool enableScriptEnforcement = AllowMicrosoftEnableScriptEnforcement.IsOn;
bool testMode = AllowMicrosoftTestMode.IsOn;
bool shouldDeploy = AllowMicrosoftCreateAndDeploy.IsChecked ?? false;
bool DeployMSRecommendedBlockRules = !AllowMicrosoftNoBockRules.IsOn;
bool DeployMSRecommendedBlockRules = !AllowMicrosoftNoBlockRules.IsOn;

try
{
Expand Down

0 comments on commit 857a941

Please sign in to comment.