Skip to content

Commit

Permalink
minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicola Lanzilotto committed Dec 15, 2023
1 parent adbe1d5 commit e6cd1f5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# tiledesk-dashboard

### 2.4.82
- Improvements and bug fixing

### 2.4.81
- Improvements and bug fixing

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,6 +1,6 @@
{
"name": "@tiledesk/tiledesk-dashboard",
"version": "2.4.81",
"version": "2.4.82",
"scripts": {
"ng": "ng",
"start": "ng serve --aot",
Expand Down
4 changes: 2 additions & 2 deletions src/app/app-store/app-store.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export class AppStoreComponent implements OnInit {
getApps() {
this.appStoreService.getApps().subscribe((_apps: any) => {
this.apps = _apps.apps;
this.logger.log('APP-STORE - getApps APPS ', this.apps);
console.log('APP-STORE - getApps APPS ', this.apps);


const paidApps = [
Expand All @@ -244,7 +244,7 @@ export class AppStoreComponent implements OnInit {
this.apps = _apps.apps.filter(a => !paidApps.some(p => p.title == a.title));

this.logger.log('APP-STORE - Here yes')
this.logger.log('APP-STORE - getApps APPS after filter', this.apps)
console.log('APP-STORE - getApps APPS after filter', this.apps)
}

const sendTranscriptAppIndex = this.apps.findIndex(object => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ export class DepartmentEditAddComponent implements OnInit, AfterViewInit, Compon
if (projectProfileData.profile_type === 'free') {
if (projectProfileData.trial_expired === false) {
this.prjct_profile_name = PLAN_NAME.B + " plan (trial)"
this.isVisibleGroups = true
this.isVisibleGroups = false
} else {
this.prjct_profile_name = "Free plan";
this.isVisibleGroups = false
Expand Down

0 comments on commit e6cd1f5

Please sign in to comment.