Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lightning_media
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
lightning_media
Merge requests
!3
Revert "Add update path to create media_library form display for Instagram posts."
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Revert "Add update path to create media_library form display for Instagram posts."
issue/lightning_media-3300969:3300969-passing-null-to
into
8.x-4.x
Overview
0
Commits
2
Pipelines
1
Changes
1
Merged
IMMACULATE X
requested to merge
issue/lightning_media-3300969:3300969-passing-null-to
into
8.x-4.x
2 years ago
Overview
0
Commits
2
Pipelines
1
Changes
1
Expand
This reverts commit
a716ccc3
.
Closes
#3300969
0
0
Merge request reports
Compare
8.x-4.x
version 3
ea200f77
2 years ago
version 2
ea200f77
2 years ago
version 1
04974cfb
2 years ago
8.x-4.x (base)
and
latest version
latest version
b355e168
2 commits,
2 years ago
version 3
ea200f77
3 commits,
2 years ago
version 2
ea200f77
101 commits,
2 years ago
version 1
04974cfb
94 commits,
2 years ago
1 file
+
1
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
lightning_media.module
+
1
−
1
Options
@@ -384,7 +384,7 @@ function lightning_media_js_settings_alter(array &$settings) {
}
$route_name
=
\Drupal
::
routeMatch
()
->
getRouteName
();
if
(
strpos
(
$route_name
,
'entity_browser'
)
===
0
&&
isset
(
$settings
[
'ajaxPageState'
][
'libraries'
]))
{
if
(
$route_name
&&
strpos
(
$route_name
,
'entity_browser'
)
===
0
&&
isset
(
$settings
[
'ajaxPageState'
][
'libraries'
]))
{
$libraries
=
explode
(
','
,
$settings
[
'ajaxPageState'
][
'libraries'
]);
// If we pretend EB's iframe library has not been previously loaded, it will
// ALWAYS be fetched from the server, preventing (in a crappy, kludgey way)
Loading