Skip to content

Commit a3a4f9f

Browse files
author
Kanupriya Thakur
committed
Removed noResultsFound error for no user input
1 parent 1b23782 commit a3a4f9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/mgt-components/src/components/mgt-people-picker/mgt-people-picker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -833,7 +833,7 @@ export class MgtPeoplePicker extends MgtTemplatedTaskComponent {
833833
* @memberof MgtPeoplePicker
834834
*/
835835
protected renderNoData(): TemplateResult {
836-
if (!this._isFocused) {
836+
if (!this._isFocused || this.userInput.trim().length === 0) {
837837
return;
838838
}
839839
return (

packages/mgt-element/src/utils/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
// THIS FILE IS AUTO GENERATED
99
// ANY CHANGES WILL BE LOST DURING BUILD
1010

11-
export const PACKAGE_VERSION = '4.4.0';
11+
export const PACKAGE_VERSION = '4.5.0';

0 commit comments

Comments
 (0)