File tree Expand file tree Collapse file tree 4 files changed +14
-2
lines changed
routes/chat/[agentId]/[conversationId] Expand file tree Collapse file tree 4 files changed +14
-2
lines changed Original file line number Diff line number Diff line change @@ -306,6 +306,8 @@ IRichContent.prototype.text;
306306 * @property {number? } before_active_rounds - The state active rounds before change.
307307 * @property {string } after_value - The value after change.
308308 * @property {number? } after_active_rounds - The state active rounds after change.
309+ * @property {string } data_type - The state value data type.
310+ * @property {string } source - The state source.
309311 * @property {Date } created_at - The log sent time.
310312 */
311313
Original file line number Diff line number Diff line change 447447 .state-key {
448448 color : var (--bs-primary );
449449 }
450+
451+ .state-source {
452+ font-size : 12px ;
453+ }
450454
451455 .state-value-container {
452456 display : flex ;
Original file line number Diff line number Diff line change 728728
729729< DialogModal
730730 title= {' Edit message' }
731+ size= {' md' }
731732 isOpen= {isOpenEditMsgModal}
732733 toggleModal= {toggleEditMsgModal}
733734 confirm= {confirmEditMsg}
734735 cancel= {toggleEditMsgModal}
735736 disableConfirmBtn= {!!! _ .trim (editText)}
736737>
737- < textarea class = " form-control chat-input" rows= " 10 " maxlength= {500 } bind: value= {editText} placeholder= " Enter Message..." / >
738+ < textarea class = " form-control chat-input" rows= " 3 " maxlength= {500 } bind: value= {editText} placeholder= " Enter Message..." / >
738739< / DialogModal>
739740
740741< StateModal
Original file line number Diff line number Diff line change 4545{#if beforeDataValue != defaultValue || afterDataValue != defaultValue}
4646< div class = " log-element state-change-container" >
4747 < div class = " log-meta state-key" >
48- < div>< b> {` ${ data? .name }` }</b></div>
48+ < div>
49+ < span>< b> {` ${ data? .name }` }</b></span>
50+ {#if !!data?.source}
51+ <span class="state-source">{` (${data? .source })` }</span>
52+ {/if}
53+ </div>
4954 </div>
5055 <div class="log-content state-value-container">
5156 <div class="state-value">
You can’t perform that action at this time.
0 commit comments