From 54bcde5fc1607143e4dd9ea5e4bfb9209ab66003 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 월, 13 12월 2021 17:27:32 +0900 Subject: [PATCH] 이슈 추가/수정 시 업체정보 불러오기 수정 --- src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js b/src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js index 8223853..8182c40 100644 --- a/src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js +++ b/src/main/webapp/custom_components/js-autocomplete-multi/js-autocomplete-multi.js @@ -100,7 +100,7 @@ var target = e.target.parentElement; var parentFound = false; - while (angular.isDefined(target) && target !== null && !parentFound) { + while (angular.isDefined(target) && target !== null && !parentFound && target.className !== null) { if (_.contains(target.className.split(' '), 'multiselect-parent') && !parentFound) { if (target === $dropdownTrigger) { parentFound = true; -- Gitblit v1.8.0