8000
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 acefe19 commit ef5c77bCopy full SHA for ef5c77b
js/apps/system/aardvark/frontend/js/views/queryView.js
@@ -371,6 +371,10 @@
371
},
372
373
addAQL: function () {
374
+ //update queries first, before showing
375
+ this.getAQL();
376
+ this.getSystemQueries();
377
+
378
//render options
379
this.createCustomQueryModal();
380
$('#new-query-name').val($('#querySelect').val());
@@ -435,6 +439,11 @@
435
439
436
440
saveAQL: function (e) {
437
441
e.stopPropagation();
442
443
+ //update queries first, before writing
444
445
446
438
447
var inputEditor = ace.edit("aqlEditor");
448
var saveName = $('#new-query-name').val();
449
var isUpdate = $('#modalButton1').text() === 'Update';
0 commit comments