Skip to content

Commit f090012

Browse files
committed
Changed Web Response UI to show important fields as part of entity information
1 parent e199387 commit f090012

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/src/js/components/chat/Message.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,8 @@ class Message extends React.Component {
139139
);
140140
}
141141

142-
return <div key={index} className="field">
143-
<div className="field-name">{field.name}:</div>
142+
return <div key={index} className="field wrap-word">
143+
<div className="field-name wrap-word">{field.name}:</div>
144144
{valueDiv}
145145
</div>
146146
})}

app/src/less/modules/carousel.less

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
text-align: center;
3333
display: inline-block;
3434
padding: 5px;
35-
width: 30%;
35+
max-width: 30%;
3636
}
3737

3838
img {
@@ -86,7 +86,7 @@
8686
display: inline-block;
8787
color: @brand-primary;
8888
vertical-align: top;
89-
width: 30%;
89+
width: 120px;
9090
}
9191
.field-value {
9292
display: inline-block;

0 commit comments

Comments
 (0)