We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When there is no information on file formats because crawling /file_formats failed, the heading "File Formats (0)" is rendered anyway:
/file_formats
Interestingly, this behaviour is different for collections, processes and service types, which currently can't be crawled either on the backend in question, but are not rendered.
The text was updated successfully, but these errors were encountered:
The Backend component does check whether fileFormats actually has content:
Backend
fileFormats
openeo-hub/src/components/Backend.vue
Line 60 in d83eef9
But the problem is that the backend never serves null, but instead this:
null
"fileFormats": { "input": {}, "output": null }
That is due to this MongoDB query:
openeo-hub/src/dbqueries.js
Lines 76 to 79 in d83eef9
It would be cleaner if the output would be fileFormats: null, but from the top of my head I couldn't come up with a quick Mongo query that does that.
fileFormats: null
Sorry, something went wrong.
No branches or pull requests
When there is no information on file formats because crawling
/file_formats
failed, the heading "File Formats (0)" is rendered anyway:Interestingly, this behaviour is different for collections, processes and service types, which currently can't be crawled either on the backend in question, but are not rendered.
The text was updated successfully, but these errors were encountered: