File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -154,14 +154,14 @@ const Table = () => {
154154 . map ( pattern => {
155155 if ( showPatterns [ 0 ] || checked [ cellInfo . row . original . id ] ) {
156156 return (
157- < Badge key = { pattern } className = { pattern } pill >
157+ < Badge key = { pattern } pill >
158158 { pattern }
159159 </ Badge >
160160 ) ;
161161 }
162162
163163 return (
164- < Badge key = { pattern } className = { pattern } pill >
164+ < Badge key = { pattern } pill >
165165 ***
166166 </ Badge >
167167 ) ;
@@ -176,12 +176,14 @@ const Table = () => {
176176 Header : 'Difficulty' ,
177177 accessor : 'difficulty' ,
178178 Cell : cellInfo => (
179- < Badge
180- className = { cellInfo . row . original . difficulty . toLowerCase ( ) }
181- pill
182- >
183- { cellInfo . row . original . difficulty }
184- </ Badge >
179+ < Row >
180+ < Badge
181+ className = { cellInfo . row . original . difficulty . toLowerCase ( ) }
182+ pill
183+ >
184+ { cellInfo . row . original . difficulty }
185+ </ Badge >
186+ </ Row >
185187 ) ,
186188 Filter : SelectDifficultyColumnFilter ,
187189 } ,
You can’t perform that action at this time.
0 commit comments