We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a20c23 commit b7eb3daCopy full SHA for b7eb3da
ui/src/app/models/ingestionStatus.model.ts
@@ -16,12 +16,12 @@
16
export type IngestionStatusModel = {
17
jobName: string;
18
jobType: string;
19
- topic?: TopicModel;
+ topicStatus?: TopicModel;
20
};
21
22
export class IngestionStatusModelFactory {
23
- static create(jobName: string, jobType: string, topic?: TopicModel): IngestionStatusModel {
24
- return { jobName: jobName, jobType: jobType, topic: topic };
+ static create(jobName: string, jobType: string, topicStatus?: TopicModel): IngestionStatusModel {
+ return { jobName: jobName, jobType: jobType, topicStatus: topicStatus };
25
}
26
27
static fromIngestionStatusResponseModel(ingestionStatusResponse: IngestionStatusResponseModel): IngestionStatusModel {
0 commit comments