Skip to content

Commit fd129e8

Browse files
Merge pull request #3848 from RedisInsight/fe/bugfix/RI-6101-fix-time-column-style-workbench
RI-6101 fix styling od time column in workbench
2 parents 7a69960 + 6ba2c2c commit fd129e8

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

redisinsight/ui/src/components/query-card/QueryCardHeader/QueryCardHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ const QueryCardHeader = (props: Props) => {
308308
</EuiFlexItem>
309309
<EuiFlexItem className={styles.controls} grow={false}>
310310
<EuiFlexGroup alignItems="center" gutterSize="m" responsive={false}>
311-
<EuiFlexItem className={cx(styles.time)} data-testid="command-execution-date-time">
311+
<EuiFlexItem className={styles.time} data-testid="command-execution-date-time" grow={false}>
312312
{!!createdAt && (
313313
<EuiTextColor className={styles.timeText} component="div">
314314
<FormatedDate date={createdAt} />

redisinsight/ui/src/components/query-card/QueryCardHeader/styles.module.scss

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ $marginIcon: 12px;
6161
}
6262

6363
.time {
64-
max-width: 90px;
65-
position: relative;
64+
max-width: 126px;
6665
}
6766

6867
.mode + .mode {
@@ -77,10 +76,6 @@ $marginIcon: 12px;
7776
text-align: left;
7877
}
7978

80-
.timeText {
81-
min-width: 126px;
82-
}
83-
8479
.summaryTextWrapper {
8580
min-width: 86px;
8681
}

0 commit comments

Comments
 (0)