refactor languages module to domain/controller and release 0.254 update package
This commit is contained in:
@@ -23,11 +23,11 @@ $isCompactColumn = function(array $column): bool {
|
||||
$key = strtolower(trim((string)($column['key'] ?? '')));
|
||||
$label = strtolower(trim((string)($column['label'] ?? '')));
|
||||
|
||||
if (in_array($key, ['status', 'active', 'enabled', 'is_active'], true)) {
|
||||
if (in_array($key, ['status', 'active', 'enabled', 'is_active', 'start', 'default'], true)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (in_array($label, ['status', 'aktywny', 'aktywnosc', 'active'], true)) {
|
||||
if (in_array($label, ['status', 'aktywny', 'aktywnosc', 'active', 'domyslny', 'domyślny', 'default'], true)) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -277,9 +277,9 @@ $isCompactColumn = function(array $column): bool {
|
||||
}
|
||||
|
||||
.js-table-filters-form .js-filter-compact-select {
|
||||
width: auto;
|
||||
min-width: 110px;
|
||||
max-width: 140px;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.table-list-table th.table-col-compact,
|
||||
|
||||
Reference in New Issue
Block a user