fix: project state setting state name remove camel case logic (#4652)
This commit is contained in:
parent
d27590cd49
commit
653b1a7b30
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ export const StatesListItem: React.FC<Props> = observer((props) => {
|
|||
<div className="flex items-center gap-3">
|
||||
<StateGroupIcon stateGroup={state.group} color={state.color} height="16px" width="16px" />
|
||||
<div>
|
||||
<h6 className="text-sm font-medium">{addSpaceIfCamelCase(state.name)}</h6>
|
||||
<h6 className="text-sm font-medium">{state.name}</h6>
|
||||
<p className="text-xs text-custom-text-200">{state.description}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue