From 320c88d44d26114dc113db5e6d33e3ffbbf59422 Mon Sep 17 00:00:00 2001 From: xieqiyu Date: Tue, 28 Jun 2022 13:30:51 +0800 Subject: [PATCH] * Finish task#58584. --- module/task/view/edit.html.php | 2 +- module/user/control.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/task/view/edit.html.php b/module/task/view/edit.html.php index 793691916c..7ed8075bd5 100644 --- a/module/task/view/edit.html.php +++ b/module/task/view/edit.html.php @@ -176,7 +176,7 @@ task->mailto;?>
- mailto), 'class="form-control picker-select" multiple');?> + mailto), 'class="form-control picker-select" multiple data-drop-direction="bottom"');?> fetch('my', 'buildContactLists');?>
diff --git a/module/user/control.php b/module/user/control.php index 764061370b..c790fd61a8 100755 --- a/module/user/control.php +++ b/module/user/control.php @@ -1283,7 +1283,7 @@ class user extends control public function ajaxGetContactUsers($contactListID, $dropdownName = 'mailto', $oldUsers = '') { $list = $contactListID ? $this->user->getContactListByID($contactListID) : ''; - $attr = $dropdownName == 'mailto' ? "data-placeholder='{$this->lang->chooseUsersToMail}'" : ''; + $attr = $dropdownName == 'mailto' ? "data-placeholder='{$this->lang->chooseUsersToMail}' data-drop-direction='bottom'" : ''; $users = $this->user->getPairs('devfirst|nodeleted|noclosed', $list ? $list->userList : '', $this->config->maxCount); if(isset($this->config->user->moreLink)) $this->config->moreLinks[$dropdownName . "[]"] = $this->config->user->moreLink;