Skip to content

Commit

Permalink
XWIKI-20996: AWM entry edit forms don't have labels.
Browse files Browse the repository at this point in the history
* Fixed codestyle

Co-authored-by: Michael Hamann <michael@content-space.de>
  • Loading branch information
Sereza7 and michitux authored Dec 17, 2024
1 parent f0a99b8 commit 23d77a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ define('editableProperty', ['jquery', 'xwiki-meta'], function($, xcontext) {
editInput.attr('id', editInput.attr('name'));
}
// Bind the label to the newly generated edit input
editableProperty.find('label').attr('for',editInput.attr('id'));
editableProperty.find('label').attr('for', editInput.attr('id'));
}).catch(() => {
new XWiki.widgets.Notification(l10n['web.editableProperty.editFailed'], 'error');
return Promise.reject();
Expand Down

0 comments on commit 23d77a5

Please sign in to comment.