rfellows commented on code in PR #8857:
URL: https://github.com/apache/nifi/pull/8857#discussion_r1609842528


##########
nifi-framework-bundle/nifi-framework/nifi-web/nifi-web-frontend/src/main/nifi/src/app/pages/settings/ui/reporting-tasks/edit-reporting-task/edit-reporting-task.component.ts:
##########
@@ -79,6 +82,10 @@ export class EditReportingTask extends CloseOnEscapeDialog {
     @Input() goToService!: (serviceId: string) => void;
     @Input() goToReferencingComponent!: (component: 
ControllerServiceReferencingComponent) => void;
     @Input() saving$!: Observable<boolean>;
+    @Input() propertyVerificationResults$!: 
Observable<ConfigVerificationResult[]>;
+    @Input() propertyVerificationStatus$: Observable<'pending' | 'loading' | 
'success'> = of('pending');
+
+    @Output() verify: EventEmitter<any> = new EventEmitter();

Review Comment:
   Good idea. I'll implement it that way.



-- 
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]

Reply via email to