ah okay here is my original sample, they live in the same container box so when they are the same string they collide ```go
if task.state != "" {
style = {}
style_color(&style, oc.color_rgba(0.75, 0.75, 0.75, 1))
style_next(style)
oc.ui_label_str8(task.state)
}

if task.tag != "" {
style = {}
style_color(&style, oc.color_rgba(0.75, 0.75, 0.75, 1))
style_next(style)
oc.ui_label_str8(task.tag)
}