fix: stringify ChipCloudChip text

This is required in order for `selectFilter()` to work properly
This commit is contained in:
LuanRT
2022-06-15 19:55:45 -03:00
parent f6af3faa41
commit 75e0453f69

View File

@@ -8,7 +8,7 @@ class ChipCloudChip {
// TODO: is this isSelected or just selected
this.is_selected = data.isSelected;
this.endpoint = data.navigationEndpoint && new NavigationEndpoint(data.navigationEndpoint);
this.text = new Text(data.text);
this.text = new Text(data.text).toString();
}
}