diff --git a/src/app/pages/myfiles/myfiles.page.html b/src/app/pages/myfiles/myfiles.page.html
index 5a5c5db..05e0b8f 100644
--- a/src/app/pages/myfiles/myfiles.page.html
+++ b/src/app/pages/myfiles/myfiles.page.html
@@ -39,6 +39,8 @@
+
+
@@ -48,11 +50,11 @@
{{item.title}}
{{item.description}}
-
{{item.file_name}}
+
{{item.file_name}}
@@ -79,10 +81,10 @@
-
-
-
- Return
-
-
-
+
+
+
+
+
+
+
diff --git a/src/app/pages/myfiles/myfiles.page.ts b/src/app/pages/myfiles/myfiles.page.ts
index 7190aa1..fdc5729 100644
--- a/src/app/pages/myfiles/myfiles.page.ts
+++ b/src/app/pages/myfiles/myfiles.page.ts
@@ -13,7 +13,8 @@ export class MyfilesPage implements OnInit {
tabs = 'myfiles';
-
+ session_image_server:string='';
+ curr_session:string="";
constructor(
private navctr: NavController,
private router: Router,
@@ -26,7 +27,9 @@ export class MyfilesPage implements OnInit {
ngOnInit() {
- this.getMyFiles();
+ this.session_image_server = this.sessionDataProviderService.session_image_server;
+ this.curr_session = this.sessionDataProviderService.session;
+ this.getMyFiles();
}
onBack() {
@@ -64,7 +67,6 @@ export class MyfilesPage implements OnInit {
console.log("myFilesData RETURN DATA->", this.myFilesData);
}
);
-
}
}