Skip to content

Commit

Permalink
Styling fix
Browse files Browse the repository at this point in the history
  • Loading branch information
khorwood-openai committed Oct 1, 2024
1 parent 298680f commit 3157798
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/pages/ConsolePage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,6 @@
padding-top: 4px;
line-height: 1.2em;
overflow: auto;
position: relative;
&.full {
padding: 0px;
}
Expand Down Expand Up @@ -190,6 +189,8 @@
}
.speaker-content {
color: #18181b;
overflow: hidden;
word-wrap: break-word;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/ConsolePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ export function ConsolePage() {
{items.map((conversationItem, i) => {
return (
<div className="conversation-item" key={conversationItem.id}>
<div className={`speaker ${conversationItem.role}`}>
<div className={`speaker ${conversationItem.role || ''}`}>
<div>
{(
conversationItem.role || conversationItem.type
Expand Down

0 comments on commit 3157798

Please sign in to comment.