Skip to content

Commit

Permalink
Issue #1449: Fix Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhaerter committed Jan 10, 2022
1 parent 013c9ef commit db3dfac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions var/httpd/htdocs/js/Core.Agent.DynamicFieldDBSearch.js
Original file line number Diff line number Diff line change
Expand Up @@ -258,8 +258,8 @@ Core.Agent.DynamicFieldDBSearch = (function(TargetNS) {
/TicketID=(\d+)/.exec(document.URL);
TicketID = RegExp.$1;

var liElemId = $Element.parents().closest('li').attr('id');
var activityDialogID = liElemID.match(/^Process_ActivityDialog-([a-f0-9]{32})$/)[1];
var liElementId = $Element.parents().closest('li').attr('id');
var activityDialogID = liElementId.match(/^Process_ActivityDialog-([a-f0-9]{32})$/)[1];

// serialize form
QueryString = Core.AJAX.SerializeForm($('#'+DynamicFieldName).closest('form'), IgnoreList) + SerializeData(UpdateList);
Expand Down

0 comments on commit db3dfac

Please sign in to comment.