Skip to content

Commit

Permalink
update channelId prop descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
michelle0927 committed Sep 24, 2024
1 parent bdf75d6 commit 7f3a3a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions components/slack_bot/common/utils.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,5 @@ function buildAppProps({
export default {
streamIterator,
buildAppProps,
CONVERSATION_PERMISSION_MESSAGE,
};
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import common from "../common/base.mjs";
import constants from "../../common/constants.mjs";
import utils from "../../common/utils.mjs";

export default {
...common,
Expand All @@ -22,7 +23,7 @@ export default {
}),
],
label: "User Channel",
description: "Events will only be emitted for direct messages between this user and the Bot.",
description: `Events will only be emitted for direct messages between this user and the Bot. ${utils.CONVERSATION_PERMISSION_MESSAGE}`,
},
},
methods: {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import common from "../common/base.mjs";
import constants from "../../common/constants.mjs";
import utils from "../../common/utils.mjs";

export default {
...common,
Expand All @@ -23,6 +24,7 @@ export default {
],
}),
],
description: `Select the channel's ID. ${utils.CONVERSATION_PERMISSION_MESSAGE}`,
},
},
methods: {
Expand Down

0 comments on commit 7f3a3a9

Please sign in to comment.