소스 검색

Typo fix in getDefaultValueForSection()

Vijayakrishnan 4 년 전
부모
커밋
2344daaf2e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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();
                 }