correction for mandatory fields in forms
Signed-off-by: Michael Kaufmann <d00p@froxlor.org>
This commit is contained in:
@@ -33,7 +33,7 @@ use Froxlor\UI\Listing;
|
||||
return [
|
||||
'customer_list' => [
|
||||
'title' => lng('admin.customers'),
|
||||
'description' => 'Manage your customers',
|
||||
'description' => lng('admin.customers_list_desc'),
|
||||
'icon' => 'fa-solid fa-user',
|
||||
'self_overview' => ['section' => 'customers', 'page' => 'customers'],
|
||||
'columns' => [
|
||||
|
||||
@@ -33,7 +33,7 @@ return [
|
||||
'domain_list' => [
|
||||
'title' => lng('admin.domains'),
|
||||
'icon' => 'fa-solid fa-globe',
|
||||
'empty_msg' => lng('admin.domain_nocustomeraddingavailable'),
|
||||
'empty_msg' => $customerCollection->count() == 0 ? lng('admin.domain_nocustomeraddingavailable') : '',
|
||||
'self_overview' => ['section' => 'domains', 'page' => 'domains'],
|
||||
'columns' => [
|
||||
'd.id' => [
|
||||
|
||||
Reference in New Issue
Block a user