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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
description
No description provided.
The text was updated successfully, but these errors were encountered:
Looks like this will solve it: https://stackoverflow.com/a/41495115:
<span style="white-space: pre-wrap;"></span>
Sorry, something went wrong.
the diff to fix the issue:
diff --git a/datalad_catalog/catalog/templates/dataset-template.html b/datalad_catalog/catalog/templates/dataset-template.html index d9f53c6..f06af76 100644 --- a/datalad_catalog/catalog/templates/dataset-template.html +++ b/datalad_catalog/catalog/templates/dataset-template.html @@ -190,11 +190,11 @@ <b-row no-gutters> <b-col md="9" style="text-align: justify;"> <b-card-text> - <strong>Description:</strong> + <strong>Description:</strong><br> <span v-if="displayData.description && Array.isArray(displayData.description) && displayData.description.length>0 "> - <span v-for="desc in displayData.description">{{desc}}<br></span> + <span v-for="desc in displayData.description" style="white-space: pre-wrap;">{{desc}}<br></span> </span> - <span v-else>{{selectedDataset.description}}</span> + <span v-else style="white-space: pre-wrap;">{{selectedDataset.description}}</span> </b-card-text> </b-col> <b-col md="3">
or as a patch file:
whitespace_patch.patch
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: