fix: Reset form on destroy

This commit is contained in:
mrv777 2024-11-05 07:39:23 -06:00 committed by Erik Olof Gunnar Andersson
parent 378a1e23e1
commit 7ffe5c573c

View File

@ -61,6 +61,7 @@ export class SwarmComponent implements OnInit, OnDestroy {
ngOnDestroy(): void {
window.clearInterval(this.refreshIntervalRef);
this.form.reset();
}