Destination Select: Set minimum width on second select box.

This commit is contained in:
fusionate 2023-09-08 22:05:19 +00:00
parent 9684541dbe
commit 6411f50750
No known key found for this signature in database
1 changed files with 1 additions and 1 deletions

View File

@ -498,7 +498,7 @@ if (!class_exists('destinations')) {
} }
} }
$response .= " </select>\n"; $response .= " </select>\n";
$response .= " <select id='".$destination_id."' name='".$destination_name."' class='formfld' style='".$select_style."'>\n"; $response .= " <select id='".$destination_id."' name='".$destination_name."' class='formfld' style='".$select_style." min-width: 200px;'>\n";
foreach($_SESSION['destinations'][$this->domain_uuid]['array'][$destination_type] as $key => $value) { foreach($_SESSION['destinations'][$this->domain_uuid]['array'][$destination_type] as $key => $value) {
if ($key == $destination_key) { if ($key == $destination_key) {
foreach($value as $k => $row) { foreach($value as $k => $row) {