diff --git a/.gitignore b/.gitignore
index 1a3db7964..8d469628a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -30,7 +30,7 @@ npm-debug.log*
/platforms
/plugins
/www
-/www0
+/serve
/mobilefirst
# Custom
diff --git a/jest-puppeteer.config.js b/jest-puppeteer.config.js
index 740ce872b..75d3794bf 100644
--- a/jest-puppeteer.config.js
+++ b/jest-puppeteer.config.js
@@ -15,6 +15,12 @@ module.exports = {
dumpio: true,
headless: openChrome != 'true',
product: 'chrome',
+ args: [`--window-size=1200,1080`],
+ defaultViewport: {
+ width:1200,
+ height:1080
+ }
},
browserContext: 'default',
+
}
\ No newline at end of file
diff --git a/package-lock.json b/package-lock.json
index ed0927f7e..d0bdfefbf 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -11937,6 +11937,11 @@
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz",
"integrity": "sha1-4mifjzVvrWLMplo6kcXfX5VRaS8="
},
+ "faker": {
+ "version": "5.5.3",
+ "resolved": "https://registry.npmjs.org/faker/-/faker-5.5.3.tgz",
+ "integrity": "sha512-wLTv2a28wjUyWkbnX7u/ABZBkUkIF2fCd73V6P2oFqEGEktDfzWx4UxrSqtPRw0xPRAcjeAOIiJWqZm3pP4u3g=="
+ },
"fast-deep-equal": {
"version": "3.1.3",
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
diff --git a/package.json b/package.json
index a2eee7177..e7caaeb9f 100644
--- a/package.json
+++ b/package.json
@@ -70,6 +70,7 @@
"date-fns": "^2.17.0",
"depd": "^2.0.0",
"dotenv": "^10.0.0",
+ "faker": "^5.5.3",
"global": "^4.4.0",
"http-server": "^0.12.3",
"ibm-mfp-web-push": "^8.0.2020052213",
diff --git a/src/app/models/event.model.ts b/src/app/models/event.model.ts
index 2415eeb8f..d853cb321 100644
--- a/src/app/models/event.model.ts
+++ b/src/app/models/event.model.ts
@@ -19,7 +19,7 @@ export class Event{
AppointmentState: number;
TimeZone: string;
Organizer: string;
- Categories: string;
+ Category: string;
HasAttachments: boolean;
EventRecurrence?: EventRecurrence;
diff --git a/src/app/models/publication.ts b/src/app/models/publication.ts
index 728f6a288..98e726232 100644
--- a/src/app/models/publication.ts
+++ b/src/app/models/publication.ts
@@ -1,12 +1,12 @@
/* import { Image } from './image'; */
export class Publication{
- DateIndex: Date;
+ DateIndex: Date | string;
DocumentId:string;
ProcessId:string;
Title: string;
Message: string;
- DatePublication: Date;
+ DatePublication: Date | string;
OriginalFileName?: string;
FileBase64?:string;
FileExtension?: string;
diff --git a/src/app/pages/agenda/edit-event/edit-event.page.html b/src/app/pages/agenda/edit-event/edit-event.page.html
index 1622a79a1..86e653e63 100644
--- a/src/app/pages/agenda/edit-event/edit-event.page.html
+++ b/src/app/pages/agenda/edit-event/edit-event.page.html
@@ -74,7 +74,7 @@