Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xls_serialization
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
xls_serialization
Merge requests
!31
Issue
#3487475
by mably: Warning in logs when updating ExcelExport display settings
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3487475
by mably: Warning in logs when updating ExcelExport display settings
issue/xls_serialization-3487475:3487475-warning-in-logs
into
2.0.x
Overview
0
Commits
1
Pipelines
4
Changes
1
Merged
Frank Mably
requested to merge
issue/xls_serialization-3487475:3487475-warning-in-logs
into
2.0.x
5 months ago
Overview
0
Commits
1
Pipelines
4
Changes
1
Expand
Closes
#3487475
0
0
Merge request reports
Compare
2.0.x
version 3
eb359876
5 months ago
version 2
f3f85c32
5 months ago
version 1
8e3b53c2
5 months ago
2.0.x (base)
and
latest version
latest version
2263a1c3
1 commit,
5 months ago
version 3
eb359876
1 commit,
5 months ago
version 2
f3f85c32
1 commit,
5 months ago
version 1
8e3b53c2
1 commit,
5 months ago
1 file
+
4
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Plugin/views/display/ExcelExport.php
+
4
−
1
Options
@@ -294,7 +294,10 @@ class ExcelExport extends RestExport {
}
// Uppercase the background color RGB values.
$form_state
->
setValue
(
'header_background_color'
,
strtoupper
(
$form_state
->
getValue
(
'header_background_color'
)));
$header_background_color
=
$form_state
->
getValue
(
'header_background_color'
);
if
(
$header_background_color
!==
NULL
&&
$header_background_color
!==
''
)
{
$form_state
->
setValue
(
'header_background_color'
,
strtoupper
(
$header_background_color
));
}
}
/**
Loading