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.
1 parent 28b85f0 commit 3614658Copy full SHA for 3614658
ui/src/components/ExecutionLogs/index.tsx
@@ -286,13 +286,11 @@ const ExecutionLogs = ({ projectId }: { projectId: string }) => {
286
onSearchChangeEvent={(value: string) => setSearchText(value)}
287
withExportCta={{
288
component: (
289
- <div className="select-container">
290
<Select
291
- width='250px'
292
- maxWidth='300px'
+ width="250px"
293
version="v2"
294
- options={stackIds}
295
value={selectedStackName}
+ options={stackIds}
296
placeholder={
297
selectedStackName === ''
298
? stackIds.length > 0
@@ -306,7 +304,6 @@ const ExecutionLogs = ({ projectId }: { projectId: string }) => {
306
304
setSearchText('');
307
305
}}
308
/>
309
- </div>
310
),
311
showExportCta: true
312
0 commit comments