File tree Expand file tree Collapse file tree 1 file changed +17
-15
lines changed
apps/frontend/src/components/launches Expand file tree Collapse file tree 1 file changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -180,22 +180,24 @@ export const TagsComponent: FC<{
180
180
{ ...option }
181
181
>
182
182
{ findTag && (
183
- < input
184
- type = "checkbox"
185
- checked = {
186
- tagValue . findIndex (
187
- ( f ) => f . label === option . option . label
188
- ) > - 1
189
- }
190
- readOnly
191
- />
183
+ < >
184
+ < input
185
+ type = "checkbox"
186
+ checked = {
187
+ tagValue . findIndex (
188
+ ( f ) => f . label === option . option . label
189
+ ) > - 1
190
+ }
191
+ readOnly
192
+ />
193
+ < div
194
+ className = "size-3 rounded-full flex-shrink-0"
195
+ style = { {
196
+ backgroundColor : findTag ?. color || '#942828' ,
197
+ } }
198
+ />
199
+ </ >
192
200
) }
193
- < div
194
- className = "size-3 rounded-full flex-shrink-0"
195
- style = { {
196
- backgroundColor : findTag ?. color || '#942828' ,
197
- } }
198
- />
199
201
{ option . option . label }
200
202
< div className = "flex items-center flex-grow flex-row-reverse" >
201
203
{ findTag && (
You can’t perform that action at this time.
0 commit comments