Skip to content

Commit

Permalink
Merge pull request #146 from Resgrid/develop
Browse files Browse the repository at this point in the history
CU-86895x5cu fixing call notes
  • Loading branch information
ucswift authored Jul 26, 2024
2 parents e23b8be + 06e92b2 commit ba89324
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Web/Resgrid.WebCore/Areas/User/Views/Dispatch/NewCall.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@
</div>
<div class="form-group">
<label class="col-sm-2 control-label">@localizer["PrioirtyLabel"]</label>
<div class="col-sm-10">@Html.DropDownListFor(m => m.CallPriority, Model.CallPriorities, new { @style = "width: 120px;", tabindex = "2" })</div>
<div class="col-sm-10">@Html.DropDownListFor(m => m.CallPriority, Model.CallPriorities, new { @style = "width: 200px;", tabindex = "2" })</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">@localizer["TypeLabel"]</label>
<div class="col-sm-10">@Html.DropDownListFor(m => m.Call.Type, Model.CallTypes, new { @style = "width: 120px;", tabindex = "3" })</div>
<div class="col-sm-10">@Html.DropDownListFor(m => m.Call.Type, Model.CallTypes, new { @style = "width: 200px;", tabindex = "3" })</div>
</div>
<div class="form-group">
<label class="col-sm-2 control-label">@localizer["ReportNameLabel"]</label>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -410,6 +410,8 @@ var resgrid;

if (data.CallNature && data.CallNature.length > 0) {
$('#Call_NatureOfCall').val(data.CallNature);
quillNote2.setText(data.CallNature);

}

if (data.CallType && data.CallType.length > 0) {
Expand Down

0 comments on commit ba89324

Please sign in to comment.