Postgres: Fix add button (#25087)

Previously the add button on the postgres UI would break after the first usage. This was due to the button not being fully reset after use.

(cherry picked from commit 231a32c4a3)
This commit is contained in:
Patrick Hemmer
2020-05-26 10:05:56 +02:00
committed by Hugo Häggmark
parent 0b627672ba
commit b6cb31a4de
@@ -208,10 +208,12 @@ export class PostgresQueryCtrl extends QueryCtrl {
}
}
resetPlusButton(button: { html: any; value: any }) {
resetPlusButton(button: { html: any; value: any; type: any; fake: any }) {
const plusButton = this.uiSegmentSrv.newPlusButton();
button.html = plusButton.html;
button.value = plusButton.value;
button.type = plusButton.type;
button.fake = plusButton.fake;
}
getTableSegments() {