File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
chat/[agentId]/[conversationId] Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 77
88.list-title {
99 width : 40% ;
10+ min-width : 100px ;
11+ max-width : 200px ;
1012 white-space : nowrap ;
1113 overflow : hidden ;
1214 text-overflow : ellipsis ;
Original file line number Diff line number Diff line change 224224 selectedTags = conversation? .tags || [];
225225 initUserSentMessages (dialogs);
226226 initChatView ();
227+ handlePaneResize ();
227228 const messageDraft = getMessageDraft ();
228229 text = messageDraft || ' ' ;
229- handlePaneResize ();
230230
231231 signalr .onMessageReceivedFromClient = onMessageReceivedFromClient;
232232 signalr .onMessageReceivedFromCsr = onMessageReceivedFromClient;
Original file line number Diff line number Diff line change 342342 function handleStateSearch(query) {
343343 return new Promise((resolve) => {
344344 getConversationStateSearchKeys({
345- query: query
345+ query: query,
346+ keyLimit: 20
346347 }).then(res => {
347348 resolve(res || []);
348349 }).catch(() => resolve([]));
440441 </CardBody>
441442 <CardBody>
442443 <div class="table-responsive thin-scrollbar">
443- <Table class="align-middle nowrap" style="table-layout: fixed;" bordered>
444+ <Table class="align-middle nowrap" bordered>
444445 <thead>
445446 <tr>
446447 <th scope="col" class="list-title">{$_('Title')}</th>
You can’t perform that action at this time.
0 commit comments