fix(async-tabel, async-form): removed destroyAll call

This commit is contained in:
Johannes Eder 2022-05-22 21:00:11 +02:00
parent 5201a93de6
commit 236009e508
2 changed files with 0 additions and 2 deletions

View File

@ -60,7 +60,6 @@ export class AsyncForm {
setTimeout(() => {
parentElement.insertBefore(responseElement, this._element);
this._element.remove();
this._app.utilRegistry.destroyAll(this._element);
}, delay);
}

View File

@ -447,7 +447,6 @@ export class AsyncTable {
this._element.classList.remove(ASYNC_TABLE_INITIALIZED_CLASS);
this._element.dataset['currentTableUrl'] = url.href;
this._app.utilRegistry.destroyAll(this._element);
// update table with new
this._element.innerHTML = response.element.innerHTML;