Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/lib/scss/custom/pages/_conversation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

.list-title {
width: 40%;
min-width: 100px;
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
Expand Down
2 changes: 1 addition & 1 deletion src/routes/chat/[agentId]/[conversationId]/chat-box.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -224,9 +224,9 @@
selectedTags = conversation?.tags || [];
initUserSentMessages(dialogs);
initChatView();
handlePaneResize();
const messageDraft = getMessageDraft();
text = messageDraft || '';
handlePaneResize();

signalr.onMessageReceivedFromClient = onMessageReceivedFromClient;
signalr.onMessageReceivedFromCsr = onMessageReceivedFromClient;
Expand Down
5 changes: 3 additions & 2 deletions src/routes/page/conversation/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,8 @@
function handleStateSearch(query) {
return new Promise((resolve) => {
getConversationStateSearchKeys({
query: query
query: query,
keyLimit: 20
}).then(res => {
resolve(res || []);
}).catch(() => resolve([]));
Expand Down Expand Up @@ -440,7 +441,7 @@
</CardBody>
<CardBody>
<div class="table-responsive thin-scrollbar">
<Table class="align-middle nowrap" style="table-layout: fixed;" bordered>
<Table class="align-middle nowrap" bordered>
<thead>
<tr>
<th scope="col" class="list-title">{$_('Title')}</th>
Expand Down