Преглед изворни кода

Caremonth > create claim - icd autocomplete does not work on page load

Vijayakrishnan пре 3 година
родитељ
комит
a5843bcc18
1 измењених фајлова са 3 додато и 1 уклоњено
  1. 3 1
      resources/views/app/patient/care-month/_create-claim.blade.php

+ 3 - 1
resources/views/app/patient/care-month/_create-claim.blade.php

@@ -236,8 +236,10 @@
             }
         },
         mounted: function () {
-            this.initICDAutoSuggest();
             this.getPrefillValues();
+            Vue.nextTick(() => {
+                this.initICDAutoSuggest();
+            });
         }
     });
 </script>