Skip to content

Commit 8aefea6

Browse files
LNK-4651: Renamed the label and clarified the values for better readability.
1 parent 92eda5c commit 8aefea6

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

DotNet/Report/Listeners/GenerateReportListener.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ await consumer.ConsumeWithInstrumentation(async (result, consumeCancellationToke
209209
ReportStartDate = startDate.Value,
210210
ReportEndDate = endDate.Value,
211211
Frequency = Frequency.Adhoc,
212-
AdHocType = isAutomatic ? AdHocType.Automatic : AdHocType.Manual,
212+
AdHocType = isAutomatic ? AdHocType.Census : AdHocType.Manual,
213213
ReportTypes = reportTypes,
214214
EndOfReportPeriodJobHasRun = true,
215215
EnableSubmission = !value.BypassSubmission,

DotNet/Shared/Application/Models/AdHocType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ public enum AdHocType
99
{
1010
[StringValue("Manual")]
1111
Manual = 0,
12-
[StringValue("Automatic")]
13-
Automatic = 1
12+
[StringValue("Census")]
13+
Census = 1
1414
}

Web/Admin.UI/src/app/components/tenant/facility-view/view-report/view-report.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
</div>
6060
<div>
6161
<div class="data-label">
62-
AdHocType
62+
AdHoc Source
6363
<span class="data-value">{{reportSummary?.adHocType}}</span>
6464
</div>
6565
</div>

0 commit comments

Comments
 (0)