File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
apps/frontend/src/components/launches Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ export const TagsComponent: FC<{
179
179
className = "flex flex-row items-center gap-2 p-2 cursor-pointer hover:bg-customColor1 group"
180
180
{ ...option }
181
181
>
182
- { findTag && (
182
+ { findTag ? (
183
183
< >
184
184
< input
185
185
type = "checkbox"
@@ -197,6 +197,10 @@ export const TagsComponent: FC<{
197
197
} }
198
198
/>
199
199
</ >
200
+ ) : (
201
+ < div className = "size-3 flex justify-center items-center" >
202
+ +
203
+ </ div >
200
204
) }
201
205
{ option . option . label }
202
206
< div className = "flex items-center flex-grow flex-row-reverse" >
@@ -237,7 +241,7 @@ export const TagsComponent: FC<{
237
241
} }
238
242
>
239
243
< div className = "text-white mix-blend-difference" >
240
- { findTag . name }
244
+ { findTag ? .name }
241
245
</ div >
242
246
</ div >
243
247
) ;
You can’t perform that action at this time.
0 commit comments