Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
9c13ad1
Very early Limits page
matt-aitken Jan 13, 2026
e250cd0
Improvements
matt-aitken Jan 13, 2026
0ea6b6d
Layout improvements
samejr Jan 13, 2026
da2eeff
Adds tooltips to tidy up the information
samejr Jan 13, 2026
8a116ef
More table layout improvements
samejr Jan 13, 2026
9504e70
Improves features section layout
samejr Jan 13, 2026
31d9aaa
Adds Upgrade column
samejr Jan 13, 2026
54c8678
Add button icon and update icon colors
samejr Jan 13, 2026
bc48352
Adds missing upgrade buttons
samejr Jan 13, 2026
0a56dfe
Title consistency
samejr Jan 13, 2026
1904763
Adds more icons to headers
samejr Jan 13, 2026
97d9d2a
Updates Tabler to latest version
samejr Jan 14, 2026
ddee69b
Icon update
samejr Jan 14, 2026
6c09cfe
Auto reload the page like the queues page
samejr Jan 14, 2026
f8abc10
Fix log retention upgrade logic
samejr Jan 14, 2026
11552ea
Magin top matches other pages
samejr Jan 14, 2026
f2d6aaf
Adds link to docs
samejr Jan 14, 2026
51d3bcf
Batch processing table row now included in the map
samejr Jan 14, 2026
20dbbd3
Removes the Source column from the Rate Limits table
samejr Jan 14, 2026
4904a22
Change button style to secondary
samejr Jan 14, 2026
80448ea
Change the Upgrade button logic for batch rate limit to be plan based
samejr Jan 14, 2026
4b1baa8
Show the Contact us button on the Project row
samejr Jan 14, 2026
f21cc02
Keep Quota logic in the presenter
samejr Jan 14, 2026
946f492
Log retention shows contact us button on Pro
samejr Jan 14, 2026
18b660b
Improved rate limit badge styles
samejr Jan 14, 2026
f04416d
Merge remote-tracking branch 'origin/main' into limits-page-2
samejr Jan 14, 2026
2c6127c
Improved the available rate limit logic
samejr Jan 14, 2026
88bfbd5
Animate the rate limit “Available” number
samejr Jan 14, 2026
ee8b5f7
Adds a rate limit stress test task to references
samejr Jan 14, 2026
ae1194e
Merge branch 'main' into limits-page-2
samejr Jan 14, 2026
ceba379
Remove unused attributes
samejr Jan 14, 2026
6d8632b
Use findFirstOrThrow instead
samejr Jan 14, 2026
8b33c60
More optimised query
samejr Jan 14, 2026
0027125
Improved query performance
samejr Jan 14, 2026
4c9a4d9
Added Todo for Matt
samejr Jan 15, 2026
77cc952
Check schedule limit properly. Improve some structure
matt-aitken Jan 15, 2026
7fe18d4
TaskScheduleInstance.projectId not nullable. Backfill in the migration
matt-aitken Jan 15, 2026
3544e04
TaskScheduledInstance projectId + active index
matt-aitken Jan 15, 2026
ff698d9
Fix for type error
matt-aitken 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