You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/microsoft_outlook/microsoft_outlook.app.mjs
+15-3Lines changed: 15 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -195,8 +195,19 @@ export default {
195
195
type: "string",
196
196
label: "User ID",
197
197
description: "The ID of the user to get messages for",
198
-
asyncoptions(){
199
-
const{value: users}=awaitthis.listUsers();
198
+
useQuery: true,
199
+
asyncoptions({ query }){
200
+
constargs=query
201
+
? {
202
+
params: {
203
+
$search: `"${encodeURIComponent("displayName:"+query)}" OR "${encodeURIComponent("mail:"+query)}" OR "${encodeURIComponent("userPrincipalName:"+query)}"`,
0 commit comments