Stop seeding 75% consensus on custom decision cards so wizard copy shows on the published rule.
Wire Back on the final-review chip editor to the same dismiss path as close, instead of a no-op. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -22,6 +22,7 @@ function customMethodCardMetaFromPublishedSelections(
|
||||
| Array<{
|
||||
id: string;
|
||||
label: string;
|
||||
supportText?: string;
|
||||
}>
|
||||
| undefined,
|
||||
) => {
|
||||
@@ -32,7 +33,9 @@ function customMethodCardMetaFromPublishedSelections(
|
||||
if (methodLabelFor(groupKey, id).length > 0) continue;
|
||||
const label = typeof row.label === "string" ? row.label.trim() : "";
|
||||
if (!label) continue;
|
||||
meta[id] = { label, supportText: "" };
|
||||
const supportText =
|
||||
typeof row.supportText === "string" ? row.supportText : "";
|
||||
meta[id] = { label, supportText };
|
||||
}
|
||||
};
|
||||
absorb("communication", ms.communication);
|
||||
|
||||
Reference in New Issue
Block a user