Parcourir la source

Typo fix in getDefaultValueForSection()

Vijayakrishnan il y a 4 ans
Parent
commit
2344daaf2e
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      app/Http/Controllers/NoteController.php

+ 1 - 1
app/Http/Controllers/NoteController.php

@@ -90,7 +90,7 @@ class NoteController extends Controller
 
                 // for canvas section where we have pro mapped data, use hcpProId
                 $hcpPro = null;
-                if(\request()->input('hcpProUId')) {
+                if(\request()->input('hcpProUid')) {
                     $hcpPro = Pro::where('uid', \request()->input('hcpProUid'))->first();
                 }