Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
30b24fb
Very early Limits page
matt-aitken Jan 13, 2026
808048f
Improvements
matt-aitken Jan 13, 2026
3f7bb01
Layout improvements
samejr Jan 13, 2026
ccbba42
Adds tooltips to tidy up the information
samejr Jan 13, 2026
0b1c3fb
More table layout improvements
samejr Jan 13, 2026
0d8118a
Improves features section layout
samejr Jan 13, 2026
5c2ae6c
Adds Upgrade column
samejr Jan 13, 2026
7af6945
Add button icon and update icon colors
samejr Jan 13, 2026
7d71aed
Adds missing upgrade buttons
samejr Jan 13, 2026
14a967a
Title consistency
samejr Jan 13, 2026
f487743
Adds more icons to headers
samejr Jan 13, 2026
55be0c2
Updates Tabler to latest version
samejr Jan 14, 2026
6e32ed1
Icon update
samejr Jan 14, 2026
63ca962
Auto reload the page like the queues page
samejr Jan 14, 2026
985fde4
Fix log retention upgrade logic
samejr Jan 14, 2026
c157633
Magin top matches other pages
samejr Jan 14, 2026
e9aeb65
Adds link to docs
samejr Jan 14, 2026
af63617
Batch processing table row now included in the map
samejr Jan 14, 2026
5d77c5a
Removes the Source column from the Rate Limits table
samejr Jan 14, 2026
58ba3e5
Change button style to secondary
samejr Jan 14, 2026
9661a04
Change the Upgrade button logic for batch rate limit to be plan based
samejr Jan 14, 2026
6bc1576
Show the Contact us button on the Project row
samejr Jan 14, 2026
9ed8393
Keep Quota logic in the presenter
samejr Jan 14, 2026
da1370b
Log retention shows contact us button on Pro
samejr Jan 14, 2026
3fae823
Improved rate limit badge styles
samejr Jan 14, 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