-
Notifications
You must be signed in to change notification settings - Fork 124
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
219 - Fix Bugs in Load Data Feature #220
219 - Fix Bugs in Load Data Feature #220
Conversation
- Also added validation for missing input file path
@@ -237,6 +237,16 @@ | |||
] | |||
} | |||
]; | |||
angular.forEach(previousOptions, function(value, key) { | |||
$.each(groups, function(i, group) { |
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.
please use angular.forEach... just in case we remove jQuery later.
@@ -157,7 +177,9 @@ | |||
} | |||
|
|||
$scope.$watch('mlcp.input_file_path', function(value) { | |||
searchPath(value); | |||
if(isValidInputFilePath(value)) { |
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.
The first time you open this dialog ever you get the error right off the bat. We need to set a default value for input_file_path or something.
* master: Changes to fix JS errors in Swagger UI in master
…N/explorer-ui:dhrpod4369 to develop * commit '934a2d944d0b79b4a07a3f801465b7faff70b78f': updated Dockerfile for CI/CD pipeline
This will fix marklogic/datahub-central#1478
Kindly review.