Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!8148
Added correct comment
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Added correct comment
issue/drupal-3446504:3446504-mismatch-between-implementation
into
11.x
Overview
0
Commits
1
Pipelines
1
Changes
1
Closed
utkarsh_33
requested to merge
issue/drupal-3446504:3446504-mismatch-between-implementation
into
11.x
1 year ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Closes
#3446504
0
0
Merge request reports
Compare
11.x
11.x (base)
and
latest version
latest version
3f57bd30
1 commit,
1 year ago
1 file
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
core/misc/message.js
+
4
−
4
Options
@@ -139,16 +139,16 @@
}
/**
* Removes message
s
from the message area.
* Removes
a
message
element
from the message area.
*
* @name Drupal.Message~messageDefinition.remove
*
* @param {string} id
*
Index
of the message to remove, as returned by
*
The unique identifier
of the message to remove, as returned by
* {@link Drupal.Message~messageDefinition.add}.
*
* @return {
number
}
*
Number of
removed message
s
.
* @return {
Element
}
*
Returns the
removed message
element
.
*/
remove
(
id
)
{
return
this
.
messageWrapper
.
removeChild
(
this
.
select
(
id
));
Loading