Clone props changes values of all clones

Open stage control v1.25.0 openSUSE Tumbleweed x86_64
I have a panel with the next variables:

{
  "ssid": 1,
  "color": "red"
}

And inside the panel there is a textarea with value:

@{parent.variables.ssid}

and colorWidget:

@{parent.variables.color}

If I create a clone of the panel and write in props:

{
  "variables": { "color": "blue", "ssid": 2 }
}

only the clone color is blue but the text in the original and all the clones is 2, and I only want the clone text to change. Am I doing something wrong?
image

Hi,
You need to make the id of the widgets in your strip unique to avoid falling in the same-id-synchronization mechanism between cloned widgets. For example, using the ssid in the text's id:

strip_text_@{parent.variables.ssid}
1 Like

That makes sense, thank you