Merge branch 'ent-11503-campo-comments-ocupa-mucho-para-lo-que-muestra-eventos' into 'develop'
Ent 11503 campo comments ocupa mucho para lo que muestra eventos See merge request artica/pandorafms!6158
This commit is contained in:
commit
7fd836d8de
|
@ -634,6 +634,12 @@ select:-internal-list-box {
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nowrap_max180px {
|
||||||
|
width: 10px;
|
||||||
|
max-width: 180px;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
.wrap {
|
.wrap {
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
}
|
}
|
||||||
|
|
|
@ -2393,6 +2393,14 @@ try {
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$comment_id = array_search('user_comment', $fields);
|
||||||
|
if ($comment_id !== false) {
|
||||||
|
$fields[$comment_id] = [
|
||||||
|
'text' => 'user_comment',
|
||||||
|
'class' => 'nowrap_max180px',
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
// Always add options column.
|
// Always add options column.
|
||||||
$fields = array_merge(
|
$fields = array_merge(
|
||||||
$fields,
|
$fields,
|
||||||
|
|
Loading…
Reference in New Issue