Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NAS-133904 / 25.10 / Editing the Network Widget saved the values to the other portion of the widget #11524

Merged
merged 3 commits into from
Feb 28, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
NAS-133904: Fix method calling order
bvasilenko committed Feb 25, 2025
commit 84da87f87f668c93d0dbb1894dab2f668e45addb
Original file line number Diff line number Diff line change
@@ -55,8 +55,8 @@ export class WidgetAppSettingsComponent implements WidgetSettingsComponent<Widge
}

ngOnInit(): void {
this.setCurrentSettings();
this.setupSettingsUpdate();
this.setCurrentSettings();
}

private setCurrentSettings(): void {
Original file line number Diff line number Diff line change
@@ -39,8 +39,8 @@ export class WidgetArbitraryTextSettingsComponent implements
) { }

ngOnInit(): void {
this.setCurrentSettings();
this.setupSettingsUpdate();
this.setCurrentSettings();
}

private setCurrentSettings(): void {
Original file line number Diff line number Diff line change
@@ -53,8 +53,8 @@ export class WidgetPoolSettingsComponent implements WidgetSettingsComponent<Widg
}

ngOnInit(): void {
this.setCurrentSettings();
this.setupSettingsUpdate();
this.setCurrentSettings();
}

private setCurrentSettings(): void {