Skip to content
Snippets Groups Projects
Commit 5668cabc authored by Antoine Lambert's avatar Antoine Lambert
Browse files

assets/save: Display save code now request note in a pre element

It enables to properly display line breaks in save code now info popover.
parent 8b919bc4
No related branches found
No related tags found
1 merge request!795assets/save: Display save code now request note in a pre element
......@@ -487,7 +487,7 @@ export async function displaySaveRequestInfo(event, saveRequestId) {
content = 'Not available';
} else if (saveRequestTaskInfo.note != null) {
content = saveRequestTaskInfo.note;
content = `<pre>${saveRequestTaskInfo.note}</pre>`;
} else {
const saveRequestInfo = [];
const taskData = {
......
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