]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/rounds/Item.js
better seed code legibility
[alttp.git] / resources / js / components / rounds / Item.js
index c17a5aa6f058cd438d657a79b3b0ac147e1f2725..10549dd151a5f52048e0fd56c19c0288e55ac92b 100644 (file)
@@ -12,7 +12,6 @@ import { withUser } from '../../helpers/UserContext';
 import i18n from '../../i18n';
 
 const Item = ({
-       index,
        round,
        tournament,
        user,
@@ -20,12 +19,15 @@ const Item = ({
 <li className="round d-flex">
        <div className="info">
                <p className="date">
-                       {`#${index + 1} `}
+                       {round.number ? `#${round.number} ` : '#?'}
                        {i18n.t('rounds.date', { date: new Date(round.created_at) })}
                </p>
                <p className="seed">
                        {round.code ?
-                               <SeedCode code={round.code} />
+                               <>
+                                       <SeedCode code={round.code} />
+                                       {' '}
+                               </>
                        : null}
                        <SeedButton
                                round={round}
@@ -46,10 +48,10 @@ const Item = ({
 </li>;
 
 Item.propTypes = {
-       index: PropTypes.number,
        round: PropTypes.shape({
                code: PropTypes.arrayOf(PropTypes.string),
                created_at: PropTypes.string,
+               number: PropTypes.number,
                seed: PropTypes.string,
        }),
        tournament: PropTypes.shape({