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:
authorMike Greiling <mike@pixelcog.com>2018-09-21 19:23:26 +0300
committerMike Greiling <mike@pixelcog.com>2018-09-21 19:23:26 +0300
commitaef686d4a91d86bbfbe6d3c85c7cd98d3558d6f7 (patch)
tree69d1a9913d564672685d2f08d6abe0e537ae84f9 /app/assets/javascripts
parent1f177a385dd3a54d6db82b4dbd2c9f5fe692b195 (diff)
Switch to per-line rule exceptions
Diffstat (limited to 'app/assets/javascripts')
-rw-r--r--app/assets/javascripts/sidebar/components/time_tracking/time_tracker.vue6
1 files changed, 4 insertions, 2 deletions
diff --git a/app/assets/javascripts/sidebar/components/time_tracking/time_tracker.vue b/app/assets/javascripts/sidebar/components/time_tracking/time_tracker.vue
index 65d75b1cd05..2ee3e1f322e 100644
--- a/app/assets/javascripts/sidebar/components/time_tracking/time_tracker.vue
+++ b/app/assets/javascripts/sidebar/components/time_tracking/time_tracker.vue
@@ -1,6 +1,4 @@
<script>
-/* eslint-disable vue/prop-name-casing */
-
import TimeTrackingHelpState from './help_state.vue';
import TimeTrackingCollapsedState from './collapsed_state.vue';
import TimeTrackingSpentOnlyPane from './spent_only_pane.vue';
@@ -21,19 +19,23 @@ export default {
TimeTrackingHelpState,
},
props: {
+ // eslint-disable-next-line vue/prop-name-casing
time_estimate: {
type: Number,
required: true,
},
+ // eslint-disable-next-line vue/prop-name-casing
time_spent: {
type: Number,
required: true,
},
+ // eslint-disable-next-line vue/prop-name-casing
human_time_estimate: {
type: String,
required: false,
default: '',
},
+ // eslint-disable-next-line vue/prop-name-casing
human_time_spent: {
type: String,
required: false,