-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[CYB-193][UI] Landing page for pipelines. #81
Conversation
* Build fix.
# Conflicts: # .github/workflows/build_and_test.yml # flink-cyber/cyber-services/cyber-worker-service/pom.xml # flink-cyber/metron-parser-chain/parser-chains-config-service/src/main/java/com/cloudera/parserchains/queryservice/controller/ChainController.java # flink-cyber/metron-parser-chain/parser-chains-config-service/src/main/java/com/cloudera/parserchains/queryservice/controller/ClusterController.java # flink-cyber/metron-parser-chain/parser-chains-config-service/src/main/java/com/cloudera/parserchains/queryservice/controller/JobController.java # flink-cyber/metron-parser-chain/parser-chains-config-service/src/main/java/com/cloudera/parserchains/queryservice/controller/PipelineController.java
* initial commit with new pages. * refactor old page for chains list.
…eate_datahub_config.sh setup script (#76)
* fix build.
* fix build.
* fix build.
* Fix ui issue with popup windows.
* Fix some minor issue.
* Fix some minor issue.
@@ -37,6 +44,7 @@ | |||
@Slf4j | |||
@EnableKafka | |||
@Configuration | |||
@Profile("kafka") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without this profile the entire application doesn't work
// return values.pipe( | ||
// map(items => { | ||
// if (column) { | ||
// const b = items.some(el => el[column] === uniqVal); | ||
// return b ? {uniqueValue: true} : null; | ||
// } | ||
// return items.some(uniqVal) ? {uniqueValue: true}: null; | ||
// }), | ||
// first() | ||
// ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this might be worth removing
// it('should have buttons as per @Input', () => { | ||
// component.buttons = [ {label: "Test1", value: "Value1"}, {label: "Test2", value: "Value2"} ]; | ||
// expect(component.buttons.length).toBe(2); | ||
// expect(component.buttons.map(button => button.label)).toEqual(['Test1', 'Test2']); | ||
// }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
once again, commented code is better to keep off-codebase
* Fix comments.
* Fix merge conflicts.
No description provided.