diff --git a/frontend/app/class/monitoring-object.ts b/frontend/app/class/monitoring-object.ts
index b05388154..2ac6e7356 100644
--- a/frontend/app/class/monitoring-object.ts
+++ b/frontend/app/class/monitoring-object.ts
@@ -84,9 +84,9 @@ export class MonitoringObject extends MonitoringObjectBase {
.getObject(this.moduleCode, this.objectType, this.id, depth);
}),
mergeMap((postData) => {
- if (!bFromCache) {
- this._objService.setCache(this, postData);
- }
+ // if (!bFromCache) {
+ // this._objService.setCache(this, postData);
+ // }
return this.init(postData);
})
);
diff --git a/frontend/app/components/monitoring-datatable/monitoring-datatable.component.html b/frontend/app/components/monitoring-datatable/monitoring-datatable.component.html
index 022b91733..2c2db3942 100644
--- a/frontend/app/components/monitoring-datatable/monitoring-datatable.component.html
+++ b/frontend/app/components/monitoring-datatable/monitoring-datatable.component.html
@@ -59,7 +59,7 @@
Attention
class="nav-link link cell-link"
(click)="canCreateChild ? child0.navigateToAddChildren(null, row.id, obj.siteId) : null"
[matTooltip]="
- canCreateChild ? 'Ajouter' + child0.child0().labelArtUndef(true) : toolTipNotAllowed
+ canCreateChild ? 'Ajouter ' + child0.child0().labelArtUndef(true) : toolTipNotAllowed
"
>
Attention
class="nav-link link cell-link"
(click)="row.cruved['U'] ? child0.navigateToDetail(row.id, true) : null"
[matTooltip]="
- row.cruved['U'] ? 'Editer' + child0.template.label_art_def : toolTipNotAllowed
+ row.cruved['U'] ? 'Editer ' + child0.template.label_art_def : toolTipNotAllowed
"
>
Attention
class="nav-link link cell-link"
(click)="row.cruved['D'] ? alertMessage(row) : null"
[matTooltip]="
- row.cruved['D'] ? 'Supprimer' + child0.template.label_art_def : toolTipNotAllowed
+ row.cruved['D'] ? 'Supprimer ' + child0.template.label_art_def : toolTipNotAllowed
"
>
();
+ @Output() onDeleteRow = new EventEmitter