rfellows commented on code in PR #10147:
URL: https://github.com/apache/nifi/pull/10147#discussion_r2240904375
##########
nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/status-history/status-history.component.ts:
##########
@@ -175,8 +191,15 @@ export class StatusHistory extends CloseOnEscapeDialog
implements OnInit, AfterV
return s.timestamp;
});
});
- this.minDate = this.nifiCommon.formatDateTime(new
Date(minDate));
- this.maxDate = this.nifiCommon.formatDateTime(new
Date(maxDate));
+ this.formattedMinDate = this.nifiCommon.formatDateTime(new
Date(minDate));
+ this.formattedMaxDate = this.nifiCommon.formatDateTime(new
Date(maxDate));
+
+ this.minDate = minDate;
+ this.maxDate = maxDate;
+ this.updateStartTimeOptions();
+
+ // Initialize filtered instances with all instances
+ this.filteredInstances.set(this.instances);
Review Comment:
No, it doesn't seem like it.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]