Skip to content

Commit 3614658

Browse files
committed
fix: added margin to Select in ExecutionLogs component
1 parent 28b85f0 commit 3614658

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

ui/src/components/ExecutionLogs/index.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -286,13 +286,11 @@ const ExecutionLogs = ({ projectId }: { projectId: string }) => {
286286
onSearchChangeEvent={(value: string) => setSearchText(value)}
287287
withExportCta={{
288288
component: (
289-
<div className="select-container">
290289
<Select
291-
width='250px'
292-
maxWidth='300px'
290+
width="250px"
293291
version="v2"
294-
options={stackIds}
295292
value={selectedStackName}
293+
options={stackIds}
296294
placeholder={
297295
selectedStackName === ''
298296
? stackIds.length > 0
@@ -306,7 +304,6 @@ const ExecutionLogs = ({ projectId }: { projectId: string }) => {
306304
setSearchText('');
307305
}}
308306
/>
309-
</div>
310307
),
311308
showExportCta: true
312309
}}

0 commit comments

Comments
 (0)