Skip to content

Commit

Permalink
### 1.19.1 in PROD
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Aug 26, 2024
1 parent 71e8de7 commit 79b96ee
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
*Giovanni Troisi*
### **Copyrigth**: *Tiledesk SRL*

### 1.19.1 in PROD

### 1.19.0 in PROD

### 1.18.4 in PROD
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@tiledesk/cds",
"author": "Tiledesk SRL",
"version": "1.19.0",
"version": "1.19.1",
"license": "MIT",
"homepage": "https://www.tiledesk.com",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
[response] = "command.message"
[wait] = "arrayResponses[i-1]"
[previewMode] = "previewMode"
[limitCharsText]="4000"
(moveUpResponse) = onMoveUpResponse($event)
(moveDownResponse) = onMoveDownResponse($event)
(openButtonPanel) = onOpenButtonPanel($event)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
class="text-editable-div"
[text]="response.text"
[minRow]="1"
[limitCharsText]="limitCharsText"
popoverVerticalAlign="above"
(changeTextarea)="onChangeTextarea($event)"
(blur)="onBlur($event)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ export class CdsActionReplyTextComponent implements OnInit {
@Input() response: Message;
@Input() wait: Wait;
@Input() index: number;
@Input() limitCharsText: number;
@Input() previewMode: boolean = true;

// Connector //
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ export class CdsPanelWidgetComponent implements OnInit, OnDestroy {
"&tiledesk_departmentID=" + this.defaultDepartmentId +
"&tiledesk_widgetTitle="+ encodeURIComponent(this.selectedChatbot.name) +
"&tiledesk_preChatForm=false" +
"&tiledesk_restartConversation=false" +
'&tiledesk_fullscreenMode=true&td_draft=true'
if(this.intentName && this.intentName !== '')
url += '&tiledesk_hiddenMessage=' + this.intentName
Expand Down

0 comments on commit 79b96ee

Please sign in to comment.