diff --git a/src/app/pages/home/home.page.html b/src/app/pages/home/home.page.html
index 4e59123..19c7858 100644
--- a/src/app/pages/home/home.page.html
+++ b/src/app/pages/home/home.page.html
@@ -45,12 +45,12 @@
-
-
-
-
-
-
+
+
+
+
+
+
diff --git a/src/app/pages/home/home.page.scss b/src/app/pages/home/home.page.scss
index 389c1d2..d8c2c6f 100644
--- a/src/app/pages/home/home.page.scss
+++ b/src/app/pages/home/home.page.scss
@@ -203,6 +203,7 @@ ion-content {
.list {
display: flex;
align-items: center;
+ width: 100%;
.back_image {
height: 95px;
@@ -213,6 +214,7 @@ ion-content {
min-width: 90px;
}
.detail {
+ width: 100%;
margin-left: 10px;
.bg_text {
@@ -223,6 +225,8 @@ ion-content {
border-radius: 5px;
//width: 80px;
text-align: center;
+ height: 38px;
+ width: 100%;
}
.name {
diff --git a/src/app/pages/jobinterest/jobinterest.page.html b/src/app/pages/jobinterest/jobinterest.page.html
index 947351a..fb0f1b3 100644
--- a/src/app/pages/jobinterest/jobinterest.page.html
+++ b/src/app/pages/jobinterest/jobinterest.page.html
@@ -57,12 +57,12 @@
{{item.title}}
{{item.description}}
- {{item.offer_code}} {{item.price*0.01}} {{item.currency}}
+ {{item.client_name}} : {{item.offer_code}} {{item.price*0.01}} {{item.currency}}
Expire: {{item.expire}}
-
+
diff --git a/src/app/pages/jobinterest/jobinterest.page.scss b/src/app/pages/jobinterest/jobinterest.page.scss
index 473e87d..a35f525 100644
--- a/src/app/pages/jobinterest/jobinterest.page.scss
+++ b/src/app/pages/jobinterest/jobinterest.page.scss
@@ -102,8 +102,8 @@ ion-content {
display: flex;
.men_image {
- height: 50px;
- width: 50px;
+ height: 50px !important;
+ width: 50px !important;
border-radius: 100%;
}
diff --git a/src/app/store/session-data-provider.service.ts b/src/app/store/session-data-provider.service.ts
index 622525a..51ac6b1 100644
--- a/src/app/store/session-data-provider.service.ts
+++ b/src/app/store/session-data-provider.service.ts
@@ -51,6 +51,7 @@ export class SessionDataProviderService {
"zip_code": "30127",
"internal_return": 100
*/
+ account_type:string="";
email: string = "";
firstname: string = "";
lastname:string = "";
@@ -78,10 +79,9 @@ export class SessionDataProviderService {
ConstructGlobalSessionData(loginResult: any) {
console.log('Hello ConstructGlobalSessionData Provider');
this.session_contructed=false;
-
try {
console.log(loginResult);
-
+ this.account_type = loginResult.account_type;
this.firstname = loginResult.firstname;
this.lastname = loginResult.lastname;
this.session = loginResult.session;
@@ -102,7 +102,6 @@ export class SessionDataProviderService {
this.pref_email= loginResult.pref_email;
this.pref_phone = loginResult.pref_phone;
this.promo=loginResult.promo;
-
//this.pushNotificationProvider.tagUser(this.session);
this.session_contructed = true;