0">
diff --git a/Mohem/src/app/eit/confirm-add-eit/confirm-add-eit.component.scss b/Mohem/src/app/eit/confirm-add-eit/confirm-add-eit.component.scss
index 44d1bc00..6371d2b9 100644
--- a/Mohem/src/app/eit/confirm-add-eit/confirm-add-eit.component.scss
+++ b/Mohem/src/app/eit/confirm-add-eit/confirm-add-eit.component.scss
@@ -1,7 +1,16 @@
.footer-button {
- border-radius: 2px;
- padding: 0 1.1em;
- min-height: 45px;
- min-width: 200px;
- }
-
\ No newline at end of file
+ border-radius: 2px;
+ padding: 0 1.1em;
+ min-height: 45px;
+ min-width: 200px;
+}
+
+.imgSize {
+ width: 22px;
+ height: 22px;
+}
+
+.btnBack {
+ background: transparent;
+ float: right;
+}
diff --git a/Mohem/src/app/hmg-common/services/common/common.service.ts b/Mohem/src/app/hmg-common/services/common/common.service.ts
index 17c20035..babcd7f6 100644
--- a/Mohem/src/app/hmg-common/services/common/common.service.ts
+++ b/Mohem/src/app/hmg-common/services/common/common.service.ts
@@ -1114,6 +1114,7 @@ export class CommonService {
}
public formatDate(date) {
let FormatedDate;
+ console.log(date);
if (date) {
FormatedDate = date.replace(/-/g, "/");
FormatedDate = FormatedDate + " 00:00:00";
@@ -1122,4 +1123,19 @@ export class CommonService {
}
return FormatedDate;
}
+
+ public formatDateNew(date) {
+ let FormatedDate;
+ console.log(date);
+ if (date) {
+ // FormatedDate = date.replace(/-/g, "/");
+ FormatedDate = date.split("T")[0];
+ FormatedDate = FormatedDate + " 00:00:00";
+ console.log(FormatedDate);
+ } else {
+ FormatedDate = date;
+ }
+ return FormatedDate;
+ }
+
}