yasithdev opened a new pull request, #225: URL: https://github.com/apache/airavata-portals/pull/225
The parser models existed and were used internally (`service_config` `modelClass: Parser`) but were never added to the public `models` export, so `models.Parser` was `undefined`. `ParserEditor` referenced it only as a prop `type` (which silently degrades to `undefined` with no error), hiding the gap. Constructing `new models.Parser()` for the data-parser create page surfaced it as "models.Parser is not a constructor". This exports `Parser`, `ParserInput`, and `ParserOutput` alongside the other models. Test plan: `/dataparsers/create/` constructs an empty `models.Parser()` and renders the editor without error. -- 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]
