Skip to content

Commit

Permalink
Label syntax error fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
tashkoskim committed May 11, 2023
1 parent 060be0e commit 9862843
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WorkTimeLogger/LogDetailsForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private void CalculateTotalHours(List<CsvRecord> l)
}
}// END - foreach

groupBox_Total.Text = $"Total worked hrs: {totalHrs.Sum()} (Total days {noDays} * 8 hrs = {noDays*8} hrs expected)";
groupBox_Total.Text = $"Total hrs worked: {totalHrs.Sum()} (Total days {noDays} * 8 hrs = {noDays*8} hrs expected)";
txtBox_Details.Text = $"Coding: {totalHrs[0]}, Meeting: {totalHrs[1]}, Break: {totalHrs[2]}";
if(unfinishedRecords.Count > 0)
{
Expand Down
Binary file modified WorkTimeLogger/Screenshots/WorkTimeLogger_LogHistory_v3.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9862843

Please sign in to comment.