Skip to content
Snippets Groups Projects
Commit ab07228f authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

FIX: escape {}

parent 731657fc
No related branches found
No related tags found
1 merge request!22Release 0.3
......@@ -395,7 +395,7 @@ ____________________\n""".format(i+1, len(pending_changes)) + str(el[3]))
</div>
</div>`);
const code_element = $("code").remove();
const entities_str = `<Response>${code_element.text()}</Response>`;
const entities_str = `<Response>${{code_element.text()}}</Response>`;
const entities = str2xml(entities_str);
transformation.transformEntities(entities).then((html) => {
wrapper.find(".caosdb-f-main-entities").append(html);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment