Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Rationalization of the number of places between filters and tents #8

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/components/app/tents/TentAddPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,8 @@ const TentAddPanel: FC<UIProps<{ tents: Tents }>> = ({ tents }) => {
["5", "5 places"],
["6", "6 places"],
["8", "8 places"],
["9", "9 places"],
["10", "10 places"],
]}
/>
<TentInput
Expand Down
1 change: 1 addition & 0 deletions src/components/app/tents/TentFilterPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ const TentFilterPanel: FC<
6: "6 places",
7: "7 places",
8: "8 places",
9: "9 places",
10: "10 places",
})}
/>
Expand Down
2 changes: 2 additions & 0 deletions src/components/app/tents/TentUpdatePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ const TentUpdatePanel: FC<UIProps<{ tent: Tent }>> = ({ tent }) => {
["6", "6 places"],
["7", "7 places"],
["8", "8 places"],
["9", "9 places"],
["10", "10 places"],
]}
/>
<TentInput
Expand Down