Skip to content

Commit 623bdb4

Browse files
committed
feat: Update EventEditor to limit displayed event types in dropdown selection
1 parent 8a4bfa4 commit 623bdb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/Event/EventEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function EventEditor({ Event }: { Event: Models.IEvent }) {
5454
invalid={!!Validation.type}
5555
helperText={Validation.type}
5656
>
57-
{Object.values(EventType).slice(2).map((type, i) =>
57+
{Object.values(EventType).slice(2, 5).map((type, i) =>
5858
<ScaleDropdownSelectItem value={type} key={i}>
5959
{type}
6060
</ScaleDropdownSelectItem>)}

0 commit comments

Comments
 (0)