nuxeo-development-framework 3.7.1 → 3.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/nuxeo-development-framework.umd.js +6 -0
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/notifications/components/notification-item/notification-item.component.js +7 -1
- package/fesm2015/nuxeo-development-framework.js +6 -0
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/package.json +1 -1
|
@@ -17633,6 +17633,7 @@
|
|
|
17633
17633
|
var approval = sourceType === "approval";
|
|
17634
17634
|
var memo = sourceType === "memo";
|
|
17635
17635
|
var general = sourceType === "general";
|
|
17636
|
+
var workspace = sourceType === "corrWorkspace";
|
|
17636
17637
|
var id = memo ? this.notification.sourceId : corrId;
|
|
17637
17638
|
if (corrId) {
|
|
17638
17639
|
this.router.navigate([
|
|
@@ -17645,6 +17646,11 @@
|
|
|
17645
17646
|
})),
|
|
17646
17647
|
});
|
|
17647
17648
|
}
|
|
17649
|
+
if (workspace) {
|
|
17650
|
+
this.router.navigate([{ outlets: { viewer: ['workspace-viewer', this.notification.sourceId] } }], {
|
|
17651
|
+
queryParams: { location: this.router.url },
|
|
17652
|
+
});
|
|
17653
|
+
}
|
|
17648
17654
|
if (memo) {
|
|
17649
17655
|
this.router.navigate([{ outlets: { viewer: ["memo", id] } }], {
|
|
17650
17656
|
queryParams: { location: this.router.url },
|