Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
usersurveys
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
thundercats
usersurveys
Merge requests
!23
SNZ-207 Added isTableCell to json definition of fields in tables
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
SNZ-207 Added isTableCell to json definition of fields in tables
SNZ-207
into
master
Overview
0
Commits
1
Changes
1
Merged
Michael Strong
requested to merge
SNZ-207
into
master
8 years ago
Overview
0
Commits
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
cdabb78a
1 commit,
8 years ago
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
code/editableformfields/tables/EditableTableRow.php
+
2
−
2
Options
@@ -37,8 +37,8 @@ class EditableTableRow extends EditableFormFieldGroup
$definition
=
parent
::
getFieldDefinition
();
$definition
[
'type'
]
=
'table-row'
;
foreach
(
$definition
[
'fields'
]
as
$field
)
{
$
field
[
'isTableCell'
]
=
true
;
foreach
(
$definition
[
'fields'
]
as
$name
=>
$field
)
{
$
definition
[
'fields'
][
$name
]
[
'isTableCell'
]
=
true
;
}
unset
(
$definition
[
'fieldDisplayFormat'
]);