I am using compound card and showing final details to the user but it is also being clicked, which is leading nowhere and I am not intended to proceed on click. So how to stop that click from being triggered?
on-click {
intent {
goal: MainChoice
value-set:MultipleID{$expr(singleId)}
}
}
I just figured out that I am using list-of to list down the answer. So after list-of, all we have to do is make has-details
key to false. So code will look like this
list-of (array) {
has-details (false)
where-each (one) {
compound-card {
// content
}
}
}