@@ -210,62 +210,62 @@ const Dashboard = () => {
210210 < span className = "text-medium-emphasis small" > Monday</ span >
211211 </ div >
212212 < div className = "progress-group-bars" >
213- < CProgress className = "progress-xs" color = "info" value = "34" />
214- < CProgress className = "progress-xs" color = "danger" value = "78" />
213+ < CProgress className = "progress-xs" color = "info" value = { 34 } />
214+ < CProgress className = "progress-xs" color = "danger" value = { 78 } />
215215 </ div >
216216 </ div >
217217 < div className = "progress-group mb-4" >
218218 < div className = "progress-group-prepend" >
219219 < span className = "text-medium-emphasis small" > Tuesday</ span >
220220 </ div >
221221 < div className = "progress-group-bars" >
222- < CProgress className = "progress-xs" color = "info" value = "56" />
223- < CProgress className = "progress-xs" color = "danger" value = "94" />
222+ < CProgress className = "progress-xs" color = "info" value = { 56 } />
223+ < CProgress className = "progress-xs" color = "danger" value = { 94 } />
224224 </ div >
225225 </ div >
226226 < div className = "progress-group mb-4" >
227227 < div className = "progress-group-prepend" >
228228 < span className = "text-medium-emphasis small" > Wednesday</ span >
229229 </ div >
230230 < div className = "progress-group-bars" >
231- < CProgress className = "progress-xs" color = "info" value = "12" />
232- < CProgress className = "progress-xs" color = "danger" value = "67" />
231+ < CProgress className = "progress-xs" color = "info" value = { 12 } />
232+ < CProgress className = "progress-xs" color = "danger" value = { 67 } />
233233 </ div >
234234 </ div >
235235 < div className = "progress-group mb-4" >
236236 < div className = "progress-group-prepend" >
237237 < span className = "text-medium-emphasis small" > Thursday</ span >
238238 </ div >
239239 < div className = "progress-group-bars" >
240- < CProgress className = "progress-xs" color = "info" value = "43" />
241- < CProgress className = "progress-xs" color = "danger" value = "91" />
240+ < CProgress className = "progress-xs" color = "info" value = { 43 } />
241+ < CProgress className = "progress-xs" color = "danger" value = { 91 } />
242242 </ div >
243243 </ div >
244244 < div className = "progress-group mb-4" >
245245 < div className = "progress-group-prepend" >
246246 < span className = "text-medium-emphasis small" > Friday</ span >
247247 </ div >
248248 < div className = "progress-group-bars" >
249- < CProgress className = "progress-xs" color = "info" value = "22" />
250- < CProgress className = "progress-xs" color = "danger" value = "73" />
249+ < CProgress className = "progress-xs" color = "info" value = { 22 } />
250+ < CProgress className = "progress-xs" color = "danger" value = { 73 } />
251251 </ div >
252252 </ div >
253253 < div className = "progress-group mb-4" >
254254 < div className = "progress-group-prepend" >
255255 < span className = "text-medium-emphasis small" > Saturday</ span >
256256 </ div >
257257 < div className = "progress-group-bars" >
258- < CProgress className = "progress-xs" color = "info" value = "53" />
259- < CProgress className = "progress-xs" color = "danger" value = "82" />
258+ < CProgress className = "progress-xs" color = "info" value = { 53 } />
259+ < CProgress className = "progress-xs" color = "danger" value = { 82 } />
260260 </ div >
261261 </ div >
262262 < div className = "progress-group mb-4" >
263263 < div className = "progress-group-prepend" >
264264 < span className = "text-medium-emphasis small" > Sunday</ span >
265265 </ div >
266266 < div className = "progress-group-bars" >
267- < CProgress className = "progress-xs" color = "info" value = "9" />
268- < CProgress className = "progress-xs" color = "danger" value = "69" />
267+ < CProgress className = "progress-xs" color = "info" value = { 9 } />
268+ < CProgress className = "progress-xs" color = "danger" value = { 69 } />
269269 </ div >
270270 </ div >
271271 </ CCol >
@@ -295,7 +295,7 @@ const Dashboard = () => {
295295 < span className = "ms-auto font-semibold" > 43%</ span >
296296 </ div >
297297 < div className = "progress-group-bars" >
298- < CProgress className = "progress-xs" color = "warning" value = "43" />
298+ < CProgress className = "progress-xs" color = "warning" value = { 43 } />
299299 </ div >
300300 </ div >
301301 < div className = "progress-group mb-5" >
@@ -305,7 +305,7 @@ const Dashboard = () => {
305305 < span className = "ms-auto font-semibold" > 37%</ span >
306306 </ div >
307307 < div className = "progress-group-bars" >
308- < CProgress className = "progress-xs" color = "warning" value = "37" />
308+ < CProgress className = "progress-xs" color = "warning" value = { 37 } />
309309 </ div >
310310 </ div >
311311
@@ -318,7 +318,7 @@ const Dashboard = () => {
318318 </ span >
319319 </ div >
320320 < div className = "progress-group-bars" >
321- < CProgress className = "progress-xs" color = "success" value = "56" />
321+ < CProgress className = "progress-xs" color = "success" value = { 56 } />
322322 </ div >
323323 </ div >
324324 < div className = "progress-group" >
@@ -330,7 +330,7 @@ const Dashboard = () => {
330330 </ span >
331331 </ div >
332332 < div className = "progress-group-bars" >
333- < CProgress className = "progress-xs" color = "success" value = "15" />
333+ < CProgress className = "progress-xs" color = "success" value = { 15 } />
334334 </ div >
335335 </ div >
336336 < div className = "progress-group" >
@@ -342,7 +342,7 @@ const Dashboard = () => {
342342 </ span >
343343 </ div >
344344 < div className = "progress-group-bars" >
345- < CProgress className = "progress-xs" color = "success" value = "11" />
345+ < CProgress className = "progress-xs" color = "success" value = { 11 } />
346346 </ div >
347347 </ div >
348348 < div className = "progress-group" >
@@ -354,15 +354,15 @@ const Dashboard = () => {
354354 </ span >
355355 </ div >
356356 < div className = "progress-group-bars" >
357- < CProgress className = "progress-xs" color = "success" value = "8" />
357+ < CProgress className = "progress-xs" color = "success" value = { 8 } />
358358 </ div >
359359 </ div >
360360 </ CCol >
361361 </ CRow >
362362
363363 < br />
364364
365- < CTable hover responsive className = "mb-0 border" >
365+ < CTable hover responsive align = "middle" className = "mb-0 border" >
366366 < CTableHead color = "light" >
367367 < CTableRow >
368368 < CTableHeaderCell className = "text-center" >
@@ -400,7 +400,7 @@ const Dashboard = () => {
400400 </ small >
401401 </ div >
402402 </ div >
403- < CProgress className = "progress-xs" color = "success" value = "50" />
403+ < CProgress className = "progress-xs" color = "success" value = { 50 } />
404404 </ CTableDataCell >
405405 < CTableDataCell className = "text-center" >
406406 < CIcon size = "xl" name = "cib-cc-mastercard" />
@@ -434,7 +434,7 @@ const Dashboard = () => {
434434 </ small >
435435 </ div >
436436 </ div >
437- < CProgress className = "progress-xs" color = "info" value = "10" />
437+ < CProgress className = "progress-xs" color = "info" value = { 10 } />
438438 </ CTableDataCell >
439439 < CTableDataCell className = "text-center" >
440440 < CIcon size = "xl" name = "cib-cc-visa" />
@@ -468,10 +468,10 @@ const Dashboard = () => {
468468 </ small >
469469 </ div >
470470 </ div >
471- < CProgress className = "progress-xs" color = "warning" value = "74" />
471+ < CProgress className = "progress-xs" color = "warning" value = { 74 } />
472472 </ CTableDataCell >
473473 < CTableDataCell className = "text-center" >
474- < CIcon size = "xl" name = "cib-stripe" />
474+ < CIcon size = "xl" name = "cib-cc- stripe" />
475475 </ CTableDataCell >
476476 < CTableDataCell >
477477 < div className = "small text-medium-emphasis" > Last login</ div >
@@ -502,10 +502,10 @@ const Dashboard = () => {
502502 </ small >
503503 </ div >
504504 </ div >
505- < CProgress className = "progress-xs" color = "danger" value = "98" />
505+ < CProgress className = "progress-xs" color = "danger" value = { 98 } />
506506 </ CTableDataCell >
507507 < CTableDataCell className = "text-center" >
508- < CIcon size = "xl" name = "cib-paypal" />
508+ < CIcon size = "xl" name = "cib-cc- paypal" />
509509 </ CTableDataCell >
510510 < CTableDataCell >
511511 < div className = "small text-medium-emphasis" > Last login</ div >
@@ -536,10 +536,10 @@ const Dashboard = () => {
536536 </ small >
537537 </ div >
538538 </ div >
539- < CProgress className = "progress-xs" color = "info" value = "22" />
539+ < CProgress className = "progress-xs" color = "info" value = { 22 } />
540540 </ CTableDataCell >
541541 < CTableDataCell className = "text-center" >
542- < CIcon size = "xl" name = "cib-google -pay" />
542+ < CIcon size = "xl" name = "cib-cc-apple -pay" />
543543 </ CTableDataCell >
544544 < CTableDataCell >
545545 < div className = "small text-medium-emphasis" > Last login</ div >
@@ -570,7 +570,7 @@ const Dashboard = () => {
570570 </ small >
571571 </ div >
572572 </ div >
573- < CProgress className = "progress-xs" color = "success" value = "43" />
573+ < CProgress className = "progress-xs" color = "success" value = { 43 } />
574574 </ CTableDataCell >
575575 < CTableDataCell className = "text-center" >
576576 < CIcon size = "xl" name = "cib-cc-amex" />
0 commit comments