Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
views_aggregator
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
views_aggregator
Merge requests
!15
Issue
#3344504
by tr: Fix test failures
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3344504
by tr: Fix test failures
issue/views_aggregator-3344504:3344504-test-failures
into
2.1.x
Overview
0
Commits
25
Pipelines
15
Changes
3
Merged
Tim Rohaly
requested to merge
issue/views_aggregator-3344504:3344504-test-failures
into
2.1.x
7 months ago
Overview
0
Commits
25
Pipelines
15
Changes
3
Expand
Closes
#3344504
0
0
Merge request reports
Compare
2.1.x
version 14
edab261d
7 months ago
version 13
ae3101dc
7 months ago
version 12
f9958039
7 months ago
version 11
4ee2bce5
7 months ago
version 10
56c45bbf
7 months ago
version 9
fd021f9d
7 months ago
version 8
25157325
7 months ago
version 7
af2bb886
7 months ago
version 6
9def3bbd
7 months ago
version 5
7e031eb3
7 months ago
version 4
130f22da
7 months ago
version 3
97199404
7 months ago
version 2
8e7201d8
7 months ago
version 1
9c5f3a24
7 months ago
2.1.x (base)
and
latest version
latest version
edab261d
25 commits,
7 months ago
version 14
edab261d
25 commits,
7 months ago
version 13
ae3101dc
24 commits,
7 months ago
version 12
f9958039
23 commits,
7 months ago
version 11
4ee2bce5
11 commits,
7 months ago
version 10
56c45bbf
11 commits,
7 months ago
version 9
fd021f9d
10 commits,
7 months ago
version 8
25157325
9 commits,
7 months ago
version 7
af2bb886
8 commits,
7 months ago
version 6
9def3bbd
6 commits,
7 months ago
version 5
7e031eb3
5 commits,
7 months ago
version 4
130f22da
4 commits,
7 months ago
version 3
97199404
3 commits,
7 months ago
version 2
8e7201d8
2 commits,
7 months ago
version 1
9c5f3a24
1 commit,
7 months ago
3 files
+
69
−
51
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/Plugin/views/style/Table.php
+
3
−
1
Options
<?php
declare
(
strict_types
=
1
);
namespace
Drupal\views_aggregator\Plugin\views\style
;
use
Drupal\Component\Utility\Xss
;
@@ -547,7 +549,7 @@ class Table extends ViewsTable {
// $aggr_values is indexed by group value and/or 'column'.
// 'column' is the last evaluated value for the field.
if
(
isset
(
$aggr_values
[
'column'
]))
{
$field_handlers
[
$field_name
]
->
last_render
=
$aggr_values
[
'column'
];
$field_handlers
[
$field_name
]
->
last_render
=
(
string
)
$aggr_values
[
'column'
];
}
foreach
(
$aggr_values
as
$group
=>
$value
)
{
// 'column' function is last so may override earlier value.
Loading