Skip to content

Commit

Permalink
# 1.20.3 in PROD
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriele Panico committed Sep 20, 2024
1 parent 2a5b6f3 commit 3b8691a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
### **Copyrigth**:
*Tiledesk SRL*

# 1.20.3
- **bug-fixed**: minor improvements

# 1.20.2

# 1.21.0-rc.6
Expand Down
4 changes: 2 additions & 2 deletions 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.20.2",
"version": "1.20.3",
"license": "MIT",
"homepage": "https://www.tiledesk.com",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,9 @@
(change)="onChangeCheckbox('namespaceAsName')">
Use Knwoledge Base name
</mat-checkbox>
<label class="field-description" [innerHTML]='"CDSCanvas.UseKBNameDescription" | translate'></label>
<label class="field-description">{{ "CDSCanvas.UseKBNameDescription" | translate }}
<a *ngIf="BRAND_BASE_INFO['DOCS']" href='https://gethelp.tiledesk.com/' target='_blank'>{{ 'LearnMore' | translate }}</a>
</label>
</section>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import { variableList } from 'src/app/chatbot-design-studio/utils-variables';
import { TranslateService } from '@ngx-translate/core';
import { loadTokenMultiplier } from 'src/app/utils/util';
import { DashboardService } from 'src/app/services/dashboard.service';
import { BRAND_BASE_INFO } from 'src/app/chatbot-design-studio/utils-resources';

@Component({
selector: 'cds-action-askgpt-v2',
Expand Down Expand Up @@ -67,6 +68,8 @@ export class CdsActionAskgptV2Component implements OnInit {
"temperature" : { name: "temperature", min: 0, max: 1, step: 0.05}
}

BRAND_BASE_INFO = BRAND_BASE_INFO;

private subscriptionChangedConnector: Subscription;

private logger: LoggerService = LoggerInstance.getInstance();
Expand Down
2 changes: 1 addition & 1 deletion src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@
"KnowledgeBaseID":"Knowledge Base ID",
"ManageKnowledgeBases":"Manage Knowledge Bases",
"UseKBName": "Use Knowledge Base name",
"UseKBNameDescription": "Check this option if you want to use this chatbot across different projects. <a href='https://gethelp.tiledesk.com/' target='_blank'>More info</a>",
"UseKBNameDescription": "Check this option if you want to use this chatbot across different projects.",
"ManageIntegration":"Manage integration",
"Howitwork":"How it works?",
"GPTReply":"Assign GPT Reply to",
Expand Down

0 comments on commit 3b8691a

Please sign in to comment.