refactor(operator): improvements to editing

This commit is contained in:
Carlos Valente
2025-11-11 13:06:26 +01:00
committed by Carlos Valente
parent aaeadd13cf
commit 1f2706a063
5 changed files with 105 additions and 8 deletions
@@ -32,11 +32,11 @@
margin-left: 0.25rem;
width: 0.75em;
height: 0.75em;
background: var(--user-bg);
background: var(--user-bg, $gray-900);
border-radius: 50%;
}
}
.empty {
color: $ui-white;
}
}
@@ -46,7 +46,7 @@ export function makeCustomFieldSelectOptions(customFields: CustomFields, filterI
options.push({
value: key,
label: value.label,
colour: value.colour || 'transparent',
colour: value.colour,
});
}