From d438f9c81cffd2e2cbec48150b43a5a89c9ab749 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 수, 16 2월 2022 15:56:56 +0900 Subject: [PATCH] - 하위이슈 직접 생성 시 프로젝트 변경 못하도록 수정 - 연관이슈 직접 생성 시 프로젝트 변경 할 경우 이슈타입도 변경 되도록 수정 --- src/main/webapp/scripts/components/utils/dateRangePicker.directive.js | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js b/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js index 7e6e62a..aee27e2 100644 --- a/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js +++ b/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js @@ -78,6 +78,7 @@ } else if ($attrs["rangeType"] === "singleDate") { $($element).daterangepicker({ timePicker: true, + timePicker24Hour : true, timePickerSeconds : true, autoUpdateInput: true, autoApply : true, @@ -86,7 +87,7 @@ //parentEl : $scope.parentEl !== undefined ? $scope.parentEl : "", locale: { - format: 'YYYY-MM-DD hh:mm:ss', + format: 'YYYY-MM-DD HH:mm:ss', separator: "~", applyLabel: options.applyLabel, cancelLabel: options.cancelLabel, @@ -102,6 +103,7 @@ } else if ($attrs["rangeType"] === "multiDate") { $($element).daterangepicker({ timePicker: true, + timePicker24Hour : true, timePickerSeconds : true, autoUpdateInput: true, autoApply : true, @@ -110,7 +112,7 @@ //parentEl : $scope.parentEl !== undefined ? $scope.parentEl : "", locale: { - format: 'YYYY-MM-DD hh:mm:ss', + format: 'YYYY-MM-DD HH:mm:ss', separator: "~", applyLabel: options.applyLabel, cancelLabel: options.cancelLabel, -- Gitblit v1.8.0