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 | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js b/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js index 4e1655e..aee27e2 100644 --- a/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js +++ b/src/main/webapp/scripts/components/utils/dateRangePicker.directive.js @@ -77,8 +77,8 @@ }); } else if ($attrs["rangeType"] === "singleDate") { $($element).daterangepicker({ - timePicker24Hour : true, timePicker: true, + timePicker24Hour : true, timePickerSeconds : true, autoUpdateInput: true, autoApply : true, @@ -87,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,8 +102,8 @@ }); } else if ($attrs["rangeType"] === "multiDate") { $($element).daterangepicker({ - timePicker24Hour : true, timePicker: true, + timePicker24Hour : true, timePickerSeconds : true, autoUpdateInput: true, autoApply : true, @@ -112,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