We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2221438 commit a1c789eCopy full SHA for a1c789e
console/atest-ui/src/views/DataManager.vue
@@ -181,16 +181,16 @@ const keyValueDataHandler = (data: QueryData) => {
181
}
182
183
const executeQuery = async () => {
184
- switch (kind.value) {
185
- case 'atest-store-elasticsearch':
186
- case 'atest-store-etcd':
187
- case 'atest-store-redis':
188
- if (sqlQuery.value === '') {
+ if (sqlQuery.value === '') {
+ switch (kind.value) {
+ case 'atest-store-elasticsearch':
+ case 'atest-store-etcd':
+ case 'atest-store-redis':
189
sqlQuery.value = '*'
190
- }
191
- break
192
- default:
193
- sqlQuery.value = ``
+ break
+ default:
+ sqlQuery.value = ''
+ }
194
195
return executeWithQuery(sqlQuery.value)
196
0 commit comments