We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be50bf2 commit c190826Copy full SHA for c190826
components/microsoft_teams/microsoft_teams.app.mjs
@@ -61,13 +61,13 @@ export default {
61
label: "Chat",
62
description: "Select a chat (type to search by participant names)",
63
async options({
64
- prevContext, searchTerm,
+ prevContext, query,
65
}) {
66
let path = "/chats?$expand=members";
67
path += "&$top=20";
68
69
- if (searchTerm) {
70
- path += `&$search="${searchTerm}"`;
+ if (query) {
+ path += `&$search="${query}"`;
71
}
72
73
const response = prevContext?.nextLink
0 commit comments