Skip to content

Commit

Permalink
Merge pull request #9 from rturknett/rturknett-conversation-dates
Browse files Browse the repository at this point in the history
Bug #7280: Bug - Dates are no longer showing on the conversation cards
  • Loading branch information
gpickett authored Oct 13, 2023
2 parents 188ec7a + 50adda7 commit a4989f9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -584,11 +584,13 @@ pre {
color: #717171;
margin-top: 3px;
margin-left: 15px;
text-wrap: nowrap;
}

.result-item-text div {
display: flex;
flex-direction: column;
margin-right: 50px;
}

#transcript-search-box {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -341,11 +341,14 @@ function UpdateResults(data, answer) {
if (pathLower.includes(".mp3") || pathLower.includes(".json") || pathLower.includes(".m4a")) {
previewAllContent = `
<div class="result-item">
<img src="images/0394-ai-lightbulb-l-standard-96x96.png"/>
<div class="result-item-text">
<h5>Call summary</h5>
<div>${document.summary}</div>
<div class="result-item-with-date">
<div class="result-item">
<img src="images/0394-ai-lightbulb-l-standard-96x96.png"/>
<div class="result-item-text">
<h5>Call summary</h5>
<div>${document.summary}</div>
</div>
<div class="result-date">${moment(document.StartTime).format("LL<br>LT")}</div>
</div>
</div>
Expand Down

0 comments on commit a4989f9

Please sign in to comment.