From 665d52cc95a03689f5f608f52d97926d59b2fdcb Mon Sep 17 00:00:00 2001 From: Rahul K R Date: Tue, 25 Jun 2024 22:45:31 +0530 Subject: [PATCH 1/4] bug fix --- .../mentor-search-directory/mentor-search-directory.page.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/pages/mentor-search-directory/mentor-search-directory.page.html b/src/app/pages/mentor-search-directory/mentor-search-directory.page.html index 46760f60..f47d65ce 100644 --- a/src/app/pages/mentor-search-directory/mentor-search-directory.page.html +++ b/src/app/pages/mentor-search-directory/mentor-search-directory.page.html @@ -90,7 +90,7 @@ -
+
\ No newline at end of file From c291116c5f3fe9d8d5a002819dab5b0b8e262e9d Mon Sep 17 00:00:00 2001 From: Rahul K R Date: Thu, 27 Jun 2024 17:19:31 +0530 Subject: [PATCH 2/4] bug fix 1378 --- .../admin/components/manage-session/manage-session.component.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/modules/admin/components/manage-session/manage-session.component.ts b/src/app/modules/admin/components/manage-session/manage-session.component.ts index 59f7531c..f2672a03 100644 --- a/src/app/modules/admin/components/manage-session/manage-session.component.ts +++ b/src/app/modules/admin/components/manage-session/manage-session.component.ts @@ -38,6 +38,7 @@ export class ManageSessionComponent implements OnInit { sortingData: any; setPaginatorToFirstpage:any = false; columnData = [ + { name: 'id', displayName: 'Session Id', type: 'text'}, { name: 'title', displayName: 'Session name', type: 'text', sortingData: [{ sort_by: 'title', order: 'ASC', label: 'A -> Z' }, { sort_by: 'title', order: 'DESC', label: 'Z -> A' }] }, { name: 'type', displayName: 'Type', type: 'text' }, { name: 'mentor_name', displayName: 'Mentor', type: 'text' }, From d4f50e318d446954758070664508774f142e1f61 Mon Sep 17 00:00:00 2001 From: Rahul K R Date: Thu, 27 Jun 2024 17:22:40 +0530 Subject: [PATCH 3/4] edit profile reload issue resolved --- src/app/core/services/db/db.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/core/services/db/db.service.ts b/src/app/core/services/db/db.service.ts index 63405ac9..3c2ecfb3 100644 --- a/src/app/core/services/db/db.service.ts +++ b/src/app/core/services/db/db.service.ts @@ -18,16 +18,16 @@ export class DbService { //Add item in DB async setItem(key,value) { - return await this._storage.set(key, value); + return await this.storage.set(key, value); } //Read item from DB async getItem(key) { - return await this._storage.get(key); + return await this.storage.get(key); } //Clear the DB async clear() { - return await this._storage.clear(); + return await this.storage.clear(); } } From 51581a66914cb16932b81079f912ddd30430dc3a Mon Sep 17 00:00:00 2001 From: Rahul K R Date: Thu, 27 Jun 2024 17:56:04 +0530 Subject: [PATCH 4/4] comment resolved --- src/app/core/services/db/db.service.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/app/core/services/db/db.service.ts b/src/app/core/services/db/db.service.ts index 3c2ecfb3..ebad35f7 100644 --- a/src/app/core/services/db/db.service.ts +++ b/src/app/core/services/db/db.service.ts @@ -5,7 +5,6 @@ import { Storage } from '@ionic/storage-angular'; providedIn: 'root', }) export class DbService { - private _storage: Storage; constructor(private storage: Storage) { } @@ -13,7 +12,6 @@ export class DbService { //Initialize DB async init() { const storage = await this.storage.create(); - this._storage = storage; } //Add item in DB