mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
fix remove filter bug
This commit is contained in:
parent
85a434568f
commit
014457c486
@ -252,8 +252,10 @@ export class StackdriverFilterCtrl {
|
||||
return [];
|
||||
}
|
||||
|
||||
this.removeSegment.value = removeText;
|
||||
return [...elements, this.removeSegment];
|
||||
return [
|
||||
...elements,
|
||||
this.uiSegmentSrv.newSegment({ fake: true, value: removeText || this.defaultRemoveGroupByValue }),
|
||||
];
|
||||
}
|
||||
|
||||
async getGroupBys(segment) {
|
||||
|
Loading…
Reference in New Issue
Block a user