X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fcomponents%2Frounds%2FItem.js;h=d8fe9d8b1ccc88983b2f843c712481fbffe260b3;hb=920f11ddfeb2175e4e1556886773dcd044c6085b;hp=c17a5aa6f058cd438d657a79b3b0ac147e1f2725;hpb=2110d91bc5016fd78aec02578b09506b6d67f45e;p=alttp.git diff --git a/resources/js/components/rounds/Item.js b/resources/js/components/rounds/Item.js index c17a5aa..d8fe9d8 100644 --- a/resources/js/components/rounds/Item.js +++ b/resources/js/components/rounds/Item.js @@ -12,7 +12,6 @@ import { withUser } from '../../helpers/UserContext'; import i18n from '../../i18n'; const Item = ({ - index, round, tournament, user, @@ -20,19 +19,22 @@ const Item = ({
  • - {`#${index + 1} `} + {round.number ? `#${round.number} ` : '#?'} {i18n.t('rounds.date', { date: new Date(round.created_at) })}

    {round.code ? - + <> + + {' '} + : null}

    - {isParticipant(user, tournament) ? + {!round.locked && isParticipant(user, tournament) ?

    ; Item.propTypes = { - index: PropTypes.number, round: PropTypes.shape({ code: PropTypes.arrayOf(PropTypes.string), created_at: PropTypes.string, + locked: PropTypes.bool, + number: PropTypes.number, seed: PropTypes.string, }), tournament: PropTypes.shape({