Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
config_readonly
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
config_readonly
Merge requests
!19
Ensure unique config names
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Ensure unique config names
issue/config_readonly-3485370:3485370-avoid-duplicate-whitelist
into
8.x-1.x
Overview
0
Commits
1
Pipelines
1
Changes
1
Open
Daniel Pernold
requested to merge
issue/config_readonly-3485370:3485370-avoid-duplicate-whitelist
into
8.x-1.x
5 months ago
Overview
0
Commits
1
Pipelines
1
Changes
1
Expand
Closes
#3485370
0
0
Merge request reports
Compare
8.x-1.x
8.x-1.x (HEAD)
and
latest version
latest version
97365580
1 commit,
5 months ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/ReadOnlyFormEvent.php
+
1
−
1
Options
@@ -105,7 +105,7 @@ class ReadOnlyFormEvent extends Event {
* The config names to be set in the event.
*/
public
function
setEditableConfigNames
(
array
$config_names
):
void
{
$this
->
configNames
=
$config_names
;
$this
->
configNames
=
array_unique
(
$config_names
)
;
}
/**
Loading