Skip to content

Commit

Permalink
Issue #1697: Fixing the multiple items bug in DynamicFieldDatabase ca…
Browse files Browse the repository at this point in the history
…used by different variable types
  • Loading branch information
stefanhaerter committed Mar 29, 2022
1 parent c84952f commit de7fdc7
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 @@ -450,10 +450,10 @@ Core.Agent.DynamicFieldDBSearch = (function(TargetNS) {

// check for duplicated entries
$('#' + Field + 'Container [class*=ResultElementText]').each(function() {

var ElementChunks = $(this).attr('id').split('_');

if (ElementChunks[1] === IdentifierKey) {
if (ElementChunks[1] == IdentifierKey) {
IsDuplicated = true;
}
});
Expand Down

0 comments on commit de7fdc7

Please sign in to comment.