Skip to content

Commit

Permalink
Fix #420 - Nick can't type! (#421)
Browse files Browse the repository at this point in the history
Simple spelling fix :)
  • Loading branch information
NickCraver authored Mar 2, 2023
1 parent e244fc6 commit 1c4a755
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Opserver.Core/Data/SQL/Enums.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public enum AutomatedBackupPreferences : byte

public enum AvailabilityModes : byte
{
[Description("Asyncrhonous Commit")] AsyncrhonousCommit = 0,
[Description("Asynchronous Commit")] AsynchronousCommit = 0,
[Description("Syncrhonous Commit")] SynchronousCommit = 1
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Health (@Model.Node.Name): @(db.SynchronizationHealth.HasValue ? db.Synchronizat
@r.IconSpan() <a href="#/cluster/@ag.ClusterName.UrlEncode()/@ag.Name.UrlEncode()/@r.ReplicaServerName.UrlEncode()">@r.ReplicaServerName</a>
@switch (r.AvailabilityMode)
{
case AvailabilityModes.AsyncrhonousCommit: <span class="text-muted">(async)</span>
case AvailabilityModes.AsynchronousCommit: <span class="text-muted">(async)</span>
break;
case AvailabilityModes.SynchronousCommit: <span class="text-primary">(sync)</span>
break;
Expand Down

0 comments on commit 1c4a755

Please sign in to comment.