瀏覽代碼

Add "." at the end of CC sentence.

Vijayakrishnan 4 年之前
父節點
當前提交
176ed737c4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      resources/views/app/patient/note/section_script.blade.php

+ 1 - 1
resources/views/app/patient/note/section_script.blade.php

@@ -143,7 +143,7 @@
                                 let ccValue = 'Patient {{$patient->name_first . ' ' . $patient->name_last}} ' +
                                     'is a {{$patient->age_in_years}} year old {{$patient->sex}} with a history of ' +
                                     itemsText + ' ' +
-                                    '{{ @$note ? (@$note->new_or_fu_or_na === 'NEW' ? 'presenting for establishing care' : 'presenting for follow-up') : '' }}';
+                                    '{{ @$note ? (@$note->new_or_fu_or_na === 'NEW' ? 'presenting for establishing care' : 'presenting for follow-up') : '' }}.';
                                 let para = $('<p/>').text(ccValue)[0].outerHTML;
                                 ccSection.find('[name="data"]').first().val(JSON.stringify({value: para}));
                                 ccSection.find('.ql-editor').html(para);