i have a config object to send from X component to Y component
from the Y component i filter the columns to get only the unique monoselect, then for each column i want to update the options of monoselectConfig.
the problem is that i can update the options but when i display the config object i don't find the modifications i just made
config = {
value: this.result,
columns: [
{
field: "speciality",
type: "monoselect",
monoselectConfig: { options: this.options },
unique: true
}
]
}