[ADF-1381] improving the style for form reflecting UX spec (#2256)

* [ADF-1381] improving the style for form reflecting UX spec

* [ADF-1381] fix error message icon

* [ADF-1381] added more spec details to form widgets

* [ADF-1381] fixed wrong check

* [ADF-1381] removed wrong added deep into scss

* [ADF-1381] applied changes due the peer review

* [ADF-1381] missed whitespace
This commit is contained in:
Vito
2017-08-30 09:02:55 -07:00
committed by Mario Romano
parent a58ced408c
commit 58c298fc25
31 changed files with 189 additions and 53 deletions

View File

@@ -79,7 +79,9 @@ export class CommentListComponent {
}
onErrorImageLoad(user: User) {
user.userImage = null;
if (user.userImage) {
user.userImage = null;
}
}
}

View File

@@ -106,6 +106,8 @@ export class PeopleSearchComponent implements OnInit {
}
onErrorImageLoad(user: User) {
user.userImage = null;
if (user.userImage) {
user.userImage = null;
}
}
}

View File

@@ -156,6 +156,8 @@ export class PeopleComponent implements OnInit, AfterViewInit {
}
onErrorImageLoad(user: User) {
user.userImage = null;
if (user.userImage) {
user.userImage = null;
}
}
}