Browse Source

HUE-7470 [editor] Only check for risks when a snippet has focus

Johan Ahlen 8 năm trước cách đây
mục cha
commit
66c75d2

+ 1 - 1
desktop/libs/notebook/src/notebook/static/notebook/js/notebook.ko.js

@@ -1051,7 +1051,7 @@ var EditorViewModel = (function() {
       });
 
       self.checkComplexity = function () {
-        if (lastCheckedComplexityStatement === self.statement()) {
+        if (!self.inFocus() || lastCheckedComplexityStatement === self.statement()) {
           return;
         }