[Issue8906] Fix broken html in the Area part of the Walkthrough

This commit is contained in:
Gabor Hodi
2022-01-20 18:29:53 +01:00
parent 97ed56bc3a
commit 29697aa728
2 changed files with 4 additions and 8 deletions
+4 -4
View File
@@ -328,8 +328,8 @@ export function uiIntroArea(context, reveal) {
timeout(function() {
reveal('.more-fields .combobox-input',
helpHtml('intro.areas.add_field', {
name: nameField.label(),
description: descriptionField.label()
name: { html: nameField.label() },
description: { html: descriptionField.label() }
}),
{ duration: 300 }
);
@@ -395,7 +395,7 @@ export function uiIntroArea(context, reveal) {
}, 300);
reveal('div.combobox',
helpHtml('intro.areas.choose_field', { field: descriptionField.label() }),
helpHtml('intro.areas.choose_field', { field: { html: descriptionField.label() } }),
{ duration: 300 }
);
@@ -456,7 +456,7 @@ export function uiIntroArea(context, reveal) {
context.container().select('.inspector-wrap .panewrap').style('right', '0%');
reveal('.entity-editor-pane',
helpHtml('intro.areas.retry_add_field', { field: descriptionField.label() }), {
helpHtml('intro.areas.retry_add_field', { field: { html: descriptionField.label() } }), {
buttonText: t.html('intro.ok'),
buttonCallback: function() { continueTo(clickAddField); }
});