]> git.localhorst.tv Git - alttp.git/blobdiff - resources/js/components/protocol/Item.js
tournament settings
[alttp.git] / resources / js / components / protocol / Item.js
index 3ccefbfe5d6f47ac5804708739f59b1f7c50b02c..dba32f52a67533df289eb8ff9dd057d0b81c7976 100644 (file)
@@ -53,13 +53,17 @@ const getEntryDescription = entry => {
                        );
                case 'result.comment': {
                        const comment = getEntryResultComment(entry);
+                       const number = getEntryRoundNumber(entry);
                        return <Trans i18nKey={`protocol.description.${entry.type}`}>
+                               {{number}}
                                <Spoiler>{{comment}}</Spoiler>,
                        </Trans>;
                }
                case 'result.report': {
+                       const number = getEntryRoundNumber(entry);
                        const time = getEntryResultTime(entry);
                        return <Trans i18nKey={`protocol.description.${entry.type}`}>
+                               {{number}}
                                <Spoiler>{{time}}</Spoiler>,
                        </Trans>;
                }
@@ -75,6 +79,7 @@ const getEntryDescription = entry => {
                                },
                        );
                case 'tournament.close':
+               case 'tournament.discord':
                case 'tournament.lock':
                case 'tournament.open':
                case 'tournament.unlock':
@@ -101,6 +106,8 @@ const getEntryIcon = entry => {
                case 'tournament.open':
                case 'tournament.unlock':
                        return <Icon.UNLOCKED />;
+               case 'tournament.discord':
+                       return <Icon.DISCORD />;
                default:
                        return <Icon.PROTOCOL />;
        }