Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/work_items/components/work_item_due_date.vue')
-rw-r--r--app/assets/javascripts/work_items/components/work_item_due_date.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/assets/javascripts/work_items/components/work_item_due_date.vue b/app/assets/javascripts/work_items/components/work_item_due_date.vue
index 3e546598dc2..b4b3049d669 100644
--- a/app/assets/javascripts/work_items/components/work_item_due_date.vue
+++ b/app/assets/javascripts/work_items/components/work_item_due_date.vue
@@ -88,7 +88,11 @@ export default {
return !this.canUpdate && !this.dueDate && !this.startDate;
},
labelClass() {
- return this.isReadonlyWithNoDates ? 'gl-align-self-center gl-pb-0!' : 'gl-mt-3 gl-pb-0!';
+ return {
+ 'work-item-field-label': true,
+ 'gl-align-self-center gl-pb-0!': this.isReadonlyWithNoDates,
+ 'gl-mt-3 gl-pb-0!': !this.isReadonlyWithNoDates,
+ };
},
showDueDateButton() {
return this.canUpdate && !this.showDueDateInput;