diff --git a/lib/Model/UserBase.php b/lib/Model/UserBase.php index b6ea3f111..30de5306a 100644 --- a/lib/Model/UserBase.php +++ b/lib/Model/UserBase.php @@ -308,14 +308,14 @@ public function jsonSerialize(): array { * * @return (bool|string|string[])[] * - * @psalm-return array{userId: string, displayName: string, emailAddress: string, subName: string, subtitle: string, isNoUser: bool, desc: string, type: string, id: string, user: string, organisation: string, languageCode: string, localeCode: string, timeZone: string, icon: string, categories: array} + * @psalm-return array{userId: string, displayName: string, emailAddress: string, subname: string, subtitle: string, isNoUser: bool, desc: string, type: string, id: string, user: string, organisation: string, languageCode: string, localeCode: string, timeZone: string, icon: string, categories: array} */ public function getRichUserArray(): array { return [ 'userId' => $this->getId(), 'displayName' => $this->getDisplayName(), 'emailAddress' => $this->getEmailAddress(), - 'subName' => $this->getSubName(), + 'subname' => $this->getSubName(), 'subtitle' => $this->getDescription(), 'isNoUser' => $this->getIsNoUser(), 'desc' => $this->getDescription(), diff --git a/src/js/components/User/UserSearch.vue b/src/js/components/User/UserSearch.vue index 59373f0f9..e4693d78d 100644 --- a/src/js/components/User/UserSearch.vue +++ b/src/js/components/User/UserSearch.vue @@ -9,6 +9,7 @@ :options="users" :multiple="false" :user-select="true" + :filterable="false" :tag-width="80" :limit="30" :loading="isLoading"