mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
search: closes dash search when selecting current dashboard (#10285)
Fixes #10231.
This commit is contained in:
@@ -36,15 +36,15 @@ export class KeybindingSrv {
|
||||
}
|
||||
|
||||
openSearchStarred() {
|
||||
this.$rootScope.appEvent('show-dash-search', {starred: true});
|
||||
appEvents.emit('show-dash-search', {starred: true});
|
||||
}
|
||||
|
||||
openSearchTags() {
|
||||
this.$rootScope.appEvent('show-dash-search', {tagsMode: true});
|
||||
appEvents.emit('show-dash-search', {tagsMode: true});
|
||||
}
|
||||
|
||||
openSearch() {
|
||||
this.$rootScope.appEvent('show-dash-search');
|
||||
appEvents.emit('show-dash-search');
|
||||
}
|
||||
|
||||
openAlerting() {
|
||||
|
||||
Reference in New Issue
Block a user