Skip to content

Commit

Permalink
fix #190
Browse files Browse the repository at this point in the history
  • Loading branch information
cars10 committed Jan 11, 2024
1 parent 147731d commit d6cc7bf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

## 1.0.3

* dont automatically open autocomplete, press `ctrl+space` to open, fixes [#189][i189]
* don't automatically open autocomplete, press `Ctrl+Space` to open, fixes [#189][i189]
* send search query with `Ctrl+Enter` when editing query, fixes [#190][i190]

[i189]: https://github.com/cars10/elasticvue/issues/189

[i190]: https://github.com/cars10/elasticvue/issues/190

## 1.0.2

* fixes issue with old versions of elasticsearch that do not provide a uuid, fixes [#182][i182]
Expand Down
2 changes: 1 addition & 1 deletion src/composables/components/rest/RestQueryForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ export const useRestQueryForm = (props: RestQueryFormProps, emit: any) => {
})

const editorCommands = [{
key: 'Ctrl-Enter', mac: 'Cmd-Enter', run: () => {
key: 'Ctrl-Enter', run: () => {
sendRequest()
return true
}
Expand Down
2 changes: 1 addition & 1 deletion src/composables/components/search/SearchDocuments.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const useSearchDocuments = () => {
}

const editorCommands = [{
key: 'Alt-Enter', mac: 'Cmd-Enter', run: () => {
key: 'Ctrl-Enter', run: () => {
search()
return true
}
Expand Down

0 comments on commit d6cc7bf

Please sign in to comment.