mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-07 22:09:57 +00:00
Config UI: tag filters and complete schema help/labels coverage (#23796)
* Config UI: add tag filters and complete schema help/labels * Config UI: finalize tags/help polish and unblock test suite * Protocol: regenerate Swift gateway models
This commit is contained in:
@@ -72,12 +72,19 @@ export function resolveSlackThreadTs(params: {
|
||||
incomingThreadTs: string | undefined;
|
||||
messageTs: string | undefined;
|
||||
hasReplied: boolean;
|
||||
isThreadReply?: boolean;
|
||||
}): string | undefined {
|
||||
const isThreadReply =
|
||||
params.isThreadReply ??
|
||||
(typeof params.incomingThreadTs === "string" &&
|
||||
params.incomingThreadTs.length > 0 &&
|
||||
params.incomingThreadTs !== params.messageTs);
|
||||
const planner = createSlackReplyReferencePlanner({
|
||||
replyToMode: params.replyToMode,
|
||||
incomingThreadTs: params.incomingThreadTs,
|
||||
messageTs: params.messageTs,
|
||||
hasReplied: params.hasReplied,
|
||||
isThreadReply,
|
||||
});
|
||||
return planner.use();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user