Skip to content

Commit

Permalink
Merge pull request #4691 from activepieces/feat/slack
Browse files Browse the repository at this point in the history
fix(slack): message should show before threadts
  • Loading branch information
abuaboud committed May 14, 2024
2 parents 15790fb + d257e51 commit 5b4da81
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,6 @@ export const slackSendMessageAction = createAction({
props: {
info: slackInfo,
channel: slackChannel,
threadTs: Property.ShortText({
displayName: 'Thread ts',
description:
'Provide the ts (timestamp) value of the **parent** message to make this message a reply. Do not use the ts value of the reply itself; use its parent instead. For example `1710304378.475129`.',
required: false,
}),
text: Property.LongText({
displayName: 'Message',
description: 'The text of your message',
Expand All @@ -34,6 +28,12 @@ export const slackSendMessageAction = createAction({
displayName: 'Attachment',
required: false,
}),
threadTs: Property.ShortText({
displayName: 'Thread ts',
description:
'Provide the ts (timestamp) value of the **parent** message to make this message a reply. Do not use the ts value of the reply itself; use its parent instead. For example `1710304378.475129`.',
required: false,
}),
blocks,
},
async run(context) {
Expand Down

0 comments on commit 5b4da81

Please sign in to comment.