keevo-components 1.5.194 → 1.5.195
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/lib/api/base-components/base-component-crud-form.mjs +3 -4
- package/fesm2015/keevo-components.mjs +10 -8
- package/fesm2015/keevo-components.mjs.map +1 -1
- package/fesm2020/keevo-components.mjs +2 -3
- package/fesm2020/keevo-components.mjs.map +1 -1
- package/lib/api/base-components/base-component-crud-form.d.ts +1 -1
- package/package.json +1 -1
|
@@ -793,9 +793,8 @@ class BaseComponentCrudForm extends BaseComponentCrud {
|
|
|
793
793
|
* Método responsável pelo carregamento da tela
|
|
794
794
|
* @param obs - Observable responsável pelo salvamento dos dados
|
|
795
795
|
*/
|
|
796
|
-
loadData(obs) {
|
|
797
|
-
obs
|
|
798
|
-
.pipe(loading())
|
|
796
|
+
async loadData(obs) {
|
|
797
|
+
await obs.pipe(loading())
|
|
799
798
|
.subscribe((data) => {
|
|
800
799
|
this.isNewRegistry = false;
|
|
801
800
|
this.registry = data;
|