Skip to content

Commit

Permalink
Resolve NRPE code review comments from Tina.
Browse files Browse the repository at this point in the history
  • Loading branch information
BengangY authored and kc284 committed Oct 24, 2023
1 parent 2ad5fd8 commit 28cdead
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions XenAdmin/SettingsPanels/NRPEEditPage.CheckGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ public CheckGroup(string name, string labelName)
{
Name = name;
NameCell = new DataGridViewTextBoxCell { Value = labelName };
WarningThresholdCell = new DataGridViewTextBoxCell();
CriticalThresholdCell = new DataGridViewTextBoxCell();
WarningThresholdCell = new DataGridViewTextBoxCell { Value = "" };
CriticalThresholdCell = new DataGridViewTextBoxCell { Value = "" };
CheckThresholdRow = new DataGridViewRow();
CheckThresholdRow.Cells.AddRange(NameCell, WarningThresholdCell, CriticalThresholdCell);
CheckThresholdRow.DefaultCellStyle.Format = "N2";
Expand Down

0 comments on commit 28cdead

Please sign in to comment.