fix: stabilise multi-turn question progression
This commit is contained in:
+1
-1
@@ -870,7 +870,7 @@ export function validateGraphUpdate(graph, update) {
|
||||
(u) => u.previousStatus !== null && u.newStatus !== u.previousStatus,
|
||||
);
|
||||
const valueChanged = update.updatedNodes.some(
|
||||
(u) => u.previousValue !== null && u.newValue !== u.previousValue,
|
||||
(u) => (u.previousValue ?? null) !== (u.newValue ?? null),
|
||||
);
|
||||
|
||||
const hasMeaningfulChange =
|
||||
|
||||
Reference in New Issue
Block a user