Bläddra i källkod

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

Vijayakrishnan 3 år sedan
förälder
incheckning
a5843bcc18
1 ändrade filer med 3 tillägg och 1 borttagningar
  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>