Route kebab Customize through the prefilled policy wizard so existing methods and values can be renamed, reordered, and kept in that field order on the card after Finalize.
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -21,7 +21,13 @@ export function readCoreValueDetailsFromLocalStorage(): Record<
|
||||
if (typeof o.meaning !== "string" || typeof o.signals !== "string") {
|
||||
continue;
|
||||
}
|
||||
out[k] = { meaning: o.meaning, signals: o.signals };
|
||||
out[k] = {
|
||||
meaning: o.meaning,
|
||||
signals: o.signals,
|
||||
...(typeof o.supportText === "string"
|
||||
? { supportText: o.supportText }
|
||||
: {}),
|
||||
};
|
||||
}
|
||||
return out;
|
||||
} catch {
|
||||
|
||||
Reference in New Issue
Block a user