We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8ba34f + 8ee1939 commit 5f7fbe3Copy full SHA for 5f7fbe3
ui/src/components/AuditLogs/index.tsx
@@ -72,7 +72,9 @@ const AuditLogs: React.FC = () => {
72
{ label: 'Entries', value: 'Entries_Select_feild' }
73
];
74
setFileOptions(predefinedOptions);
75
- handleFileChange(predefinedOptions?.[0]);
+ if (predefinedOptions?.length > 0) {
76
+ handleFileChange(predefinedOptions?.[0]);
77
+ }
78
}
79
};
80
const handleStackChange = async (selectedOption: StackOption | null) => {
0 commit comments