Fix exit plan to send option response type
Exit plan responses should use type 'option' not 'text' since they're selecting from a predefined set of options.
This commit is contained in:
parent
17ba44182b
commit
ef3c66f887
1 changed files with 1 additions and 1 deletions
|
|
@ -778,7 +778,7 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
response = {
|
response = {
|
||||||
type: 'text',
|
type: 'option',
|
||||||
value: selected.value,
|
value: selected.value,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue