Skip to content

Commit 15d1fb5

Browse files
authored
Fix invisible select dropdown in audit logs filter #7510
1 parent e935f62 commit 15d1fb5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

frontend/src/lib/components/auditLogs/AuditLogsFilters.svelte

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,6 @@
366366
<Select
367367
bind:value={username}
368368
class="w-full"
369-
disablePortal
370369
RightIcon={ChevronDown}
371370
items={usernames
372371
? [
@@ -386,7 +385,6 @@
386385
<span class="text-xs absolute font-semibold text-emphasis -top-4">Resource</span>
387386

388387
<Select
389-
disablePortal
390388
onCreateItem={(r) => (resources.value?.push(r), (resource = r))}
391389
createText="Press enter to use this value"
392390
bind:value={resource}
@@ -401,7 +399,6 @@
401399
<span class="text-xs absolute font-semibold text-emphasis -top-4">Operation</span>
402400

403401
<Select
404-
disablePortal
405402
bind:value={operation}
406403
items={['all', ...Object.values(operations)].map((r) => ({ value: r, label: r }))}
407404
inputClass="dark:!bg-gray-700"
@@ -416,7 +413,6 @@
416413
<Select
417414
class="w-full"
418415
bind:value={actionKind}
419-
disablePortal
420416
RightIcon={ChevronDown}
421417
items={[
422418
{ value: 'all', label: 'all' },

0 commit comments

Comments
 (0)