Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
webform
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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
webform
Merge requests
!460
Issue
#3441406
: Source entity type and id are not populated for a View page
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Closed
Issue
#3441406
: Source entity type and id are not populated for a View page
issue/webform-3441406:3441406-source-entity-view
into
6.2.x
Overview
1
Commits
13
Pipelines
5
Changes
157
Closed
Issue #3441406: Source entity type and id are not populated for a View page
Mingsong
requested to merge
issue/webform-3441406:3441406-source-entity-view
into
6.2.x
Apr 17, 2024
Overview
1
Commits
13
Pipelines
5
Changes
157
Closes
#3441406
0
0
Merge request reports
Compare
6.2.x
version 4
8c221b4d
Apr 25, 2024
version 3
363fa21c
Apr 22, 2024
version 2
512e8e47
Apr 22, 2024
version 1
f3f004ca
Apr 17, 2024
6.2.x (base)
and
latest version
latest version
7f94de86
13 commits,
Aug 5, 2024
version 4
8c221b4d
2 commits,
Apr 25, 2024
version 3
363fa21c
1 commit,
Apr 22, 2024
version 2
512e8e47
1 commit,
Apr 22, 2024
version 1
f3f004ca
1 commit,
Apr 17, 2024
157 files
+
359
−
634
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
157
includes/webform.libraries.inc
+
1
−
7
View file @ 7f94de86
Edit in single-file editor
Open in Web IDE
Show full file
@@ -14,13 +14,7 @@ use Drupal\webform\Utility\WebformDialogHelper;
*/
function
webform_library_info_build
()
{
$base_path
=
base_path
();
// @todo Remove once Drupal 10.2.x is only supported.
if
(
floatval
(
\Drupal
::
VERSION
)
<
10.2
)
{
$default_query_string
=
\Drupal
::
state
()
->
get
(
'system.css_js_query_string'
)
?:
'0'
;
}
else
{
$default_query_string
=
\Drupal
::
service
(
'asset.query_string'
)
->
get
();
}
$default_query_string
=
\Drupal
::
service
(
'asset.query_string'
)
->
get
();
/** @var \Drupal\webform\WebformInterface[] $webforms */
$webforms
=
Webform
::
loadMultiple
();
Loading