Merge pull request #14546 from BerriAI/filter-on-logs-bug

The 'last 24 hours' button shows up above the end user dropdown on Logs page
This commit is contained in:
Krish Dholakia 2025-09-13 23:12:39 -07:00 committed by GitHub
commit 2338dd952e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -550,7 +550,7 @@ export default function SpendLogsTable({
</div>
<div className="flex items-center gap-2 min-w-0 flex-shrink">
<div className="relative z-[9999]" ref={quickSelectRef}>
<div className="relative z-50" ref={quickSelectRef}>
<button
onClick={() => setQuickSelectOpen(!quickSelectOpen)}
className="px-3 py-2 text-sm border rounded-md hover:bg-gray-50 flex items-center gap-2"
@ -567,7 +567,7 @@ export default function SpendLogsTable({
</button>
{quickSelectOpen && (
<div className="absolute right-0 mt-2 w-64 bg-white rounded-lg shadow-lg border p-2 z-[9999]">
<div className="absolute right-0 mt-2 w-64 bg-white rounded-lg shadow-lg border p-2 z-50">
<div className="space-y-1">
{quickSelectOptions.map((option) => (
<button