Skip to content

Commit ad9f3a4

Browse files
Merge pull request #662 from RedisInsight/feature/bugfix
#RI-2817 - The long entry values are not truncated in 2 lines and not…
2 parents 4ca72e9 + 49034cb commit ad9f3a4

File tree

1 file changed

+2
-3
lines changed
  • redisinsight/ui/src/pages/browser/components/stream-details/StreamDetails

1 file changed

+2
-3
lines changed

redisinsight/ui/src/pages/browser/components/stream-details/StreamDetails/styles.module.scss

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
$maxWidthCell: 190px;
2-
31
.container {
42
display: flex;
53
flex: 1;
@@ -59,7 +57,8 @@ $maxWidthCell: 190px;
5957
:global(.streamEntry) {
6058
color: var(--euiTextSubduedColor) !important;
6159
white-space: normal;
62-
max-width: $maxWidthCell;
60+
max-width: 100%;
61+
word-break: break-all;
6362
}
6463

6564
:global(.streamEntryId) {

0 commit comments

Comments
 (0)