@sumaris-net/ngx-components 2.6.15 → 2.6.16
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/esm2020/src/app/core/form/entity/editor.class.mjs +5 -2
- package/esm2020/src/app/social/message/message.model.mjs +1 -1
- package/fesm2015/sumaris-net.ngx-components.mjs +3 -1
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +3 -1
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/assets/manifest.json +1 -1
|
@@ -30437,7 +30437,9 @@ class AppEditor {
|
|
|
30437
30437
|
}
|
|
30438
30438
|
ngOnInit() {
|
|
30439
30439
|
if (this.formButtonsBar) {
|
|
30440
|
-
this.registerSubscription(this.formButtonsBar.onBack
|
|
30440
|
+
this.registerSubscription(this.formButtonsBar.onBack
|
|
30441
|
+
.pipe(throttleTime(200)) // Avoid to be called twice
|
|
30442
|
+
.subscribe(event => this.goBack(event)));
|
|
30441
30443
|
}
|
|
30442
30444
|
}
|
|
30443
30445
|
ngAfterViewInit() {
|