Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
c25a91c
Very early Limits page
matt-aitken Jan 13, 2026
2c0f20e
Improvements
matt-aitken Jan 13, 2026
796297e
Layout improvements
samejr Jan 13, 2026
f3667d6
Adds tooltips to tidy up the information
samejr Jan 13, 2026
1f2f451
More table layout improvements
samejr Jan 13, 2026
49e3190
Improves features section layout
samejr Jan 13, 2026
30d1532
Adds Upgrade column
samejr Jan 13, 2026
0b032e1
Add button icon and update icon colors
samejr Jan 13, 2026
0fa1b2c
Adds missing upgrade buttons
samejr Jan 13, 2026
16d7717
Title consistency
samejr Jan 13, 2026
7943317
Adds more icons to headers
samejr Jan 13, 2026
4050fc9
Updates Tabler to latest version
samejr Jan 14, 2026
4aa356c
Icon update
samejr Jan 14, 2026
feec86c
Auto reload the page like the queues page
samejr Jan 14, 2026
0bee8e4
Fix log retention upgrade logic
samejr Jan 14, 2026
d3638da
Magin top matches other pages
samejr Jan 14, 2026
fd10cd0
Adds link to docs
samejr Jan 14, 2026
e831453
Batch processing table row now included in the map
samejr Jan 14, 2026
c99db2d
Removes the Source column from the Rate Limits table
samejr Jan 14, 2026
f59debd
Change button style to secondary
samejr Jan 14, 2026
993f4e8
Change the Upgrade button logic for batch rate limit to be plan based
samejr Jan 14, 2026
bf5917a
Show the Contact us button on the Project row
samejr Jan 14, 2026
0f6f907
Keep Quota logic in the presenter
samejr Jan 14, 2026
8e4ea9b
Log retention shows contact us button on Pro
samejr Jan 14, 2026
8b561ea
Improved rate limit badge styles
samejr Jan 14, 2026
9bb14a6
Merge remote-tracking branch 'origin/main' into limits-page-2
samejr Jan 14, 2026
fba45f8
Improved the available rate limit logic
samejr Jan 14, 2026
ab21a7c
Animate the rate limit “Available” number
samejr Jan 14, 2026
c27fbd4
Adds a rate limit stress test task to references
samejr Jan 14, 2026
df316ba
Merge branch 'main' into limits-page-2
samejr Jan 14, 2026
470544d
Remove unused attributes
samejr Jan 14, 2026
3b449e8
Use findFirstOrThrow instead
samejr Jan 14, 2026
6f55f89
More optimised query
samejr Jan 14, 2026
05e5b9e
Improved query performance
samejr Jan 14, 2026
1af4aa8
Added Todo for Matt
samejr Jan 15, 2026
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
13 changes: 11 additions & 2 deletions apps/webapp/app/components/navigation/SideMenu.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import {
AdjustmentsHorizontalIcon,
ArrowPathRoundedSquareIcon,
ArrowRightOnRectangleIcon,
BeakerIcon,
Expand Down Expand Up @@ -50,6 +51,7 @@ import {
adminPath,
branchesPath,
concurrencyPath,
limitsPath,
logoutPath,
newOrganizationPath,
newProjectPath,
Expand Down Expand Up @@ -349,19 +351,26 @@ export function SideMenu({
<SideMenuItem
name="Concurrency"
icon={ConcurrencyIcon}
activeIconColor="text-amber-500"
activeIconColor="text-concurrency"
to={concurrencyPath(organization, project, environment)}
data-action="concurrency"
/>
)}
<SideMenuItem
name="Regions"
icon={GlobeAmericasIcon}
activeIconColor="text-green-500"
activeIconColor="text-regions"
to={regionsPath(organization, project, environment)}
data-action="regions"
badge={<V4Badge />}
/>
<SideMenuItem
name="Limits"
icon={AdjustmentsHorizontalIcon}
activeIconColor="text-limits"
to={limitsPath(organization, project, environment)}
data-action="limits"
/>
<SideMenuItem
name="Project settings"
icon={Cog8ToothIcon}
Expand Down
Loading