Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix the line length lint error
  • Loading branch information
rpkoller committed Aug 1, 2024
commit c22ba5bf0fc48f87762fffdd37c9ecc98d07f6ab
4 changes: 3 additions & 1 deletion ui/widgets/dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,9 @@ $.widget( "ui.dialog", {
}
} );

uiDialogTitle = $( "<" + this.options.uiDialogTitleTagName + ">" ).uniqueId().prependTo( this.uiDialogTitlebar );
uiDialogTitle = $( "<" + this.options.uiDialogTitleTagName + ">" )
.uniqueId()
.prependTo( this.uiDialogTitlebar );
this._addClass( uiDialogTitle, "ui-dialog-title" );
this._title( uiDialogTitle );

Expand Down