Commit 615f9578 authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch 'move-estimate-only-pane-vue-component' into 'master'

Move TimeTrackingEstimateOnlyPane vue component

See merge request gitlab-org/gitlab-ce!18318
parents 6593b2db 3f204b55
<script>
export default { export default {
name: 'time-tracking-estimate-only-pane', name: 'TimeTrackingEstimateOnlyPane',
props: { props: {
timeEstimateHumanReadable: { timeEstimateHumanReadable: {
type: String, type: String,
required: true, required: true,
}, },
}, },
template: ` };
</script>
<template>
<div class="time-tracking-estimate-only-pane"> <div class="time-tracking-estimate-only-pane">
<span class="bold"> <span class="bold">
{{ s__('TimeTracking|Estimated:') }} {{ s__('TimeTracking|Estimated:') }}
</span> </span>
{{ timeEstimateHumanReadable }} {{ timeEstimateHumanReadable }}
</div> </div>
`, </template>
};
...@@ -3,7 +3,7 @@ import timeTrackingHelpState from './help_state'; ...@@ -3,7 +3,7 @@ import timeTrackingHelpState from './help_state';
import TimeTrackingCollapsedState from './collapsed_state.vue'; import TimeTrackingCollapsedState from './collapsed_state.vue';
import timeTrackingSpentOnlyPane from './spent_only_pane'; import timeTrackingSpentOnlyPane from './spent_only_pane';
import timeTrackingNoTrackingPane from './no_tracking_pane'; import timeTrackingNoTrackingPane from './no_tracking_pane';
import timeTrackingEstimateOnlyPane from './estimate_only_pane'; import TimeTrackingEstimateOnlyPane from './estimate_only_pane.vue';
import TimeTrackingComparisonPane from './comparison_pane.vue'; import TimeTrackingComparisonPane from './comparison_pane.vue';
import eventHub from '../../event_hub'; import eventHub from '../../event_hub';
...@@ -12,7 +12,7 @@ export default { ...@@ -12,7 +12,7 @@ export default {
name: 'IssuableTimeTracker', name: 'IssuableTimeTracker',
components: { components: {
TimeTrackingCollapsedState, TimeTrackingCollapsedState,
'time-tracking-estimate-only-pane': timeTrackingEstimateOnlyPane, TimeTrackingEstimateOnlyPane,
'time-tracking-spent-only-pane': timeTrackingSpentOnlyPane, 'time-tracking-spent-only-pane': timeTrackingSpentOnlyPane,
'time-tracking-no-tracking-pane': timeTrackingNoTrackingPane, 'time-tracking-no-tracking-pane': timeTrackingNoTrackingPane,
TimeTrackingComparisonPane, TimeTrackingComparisonPane,
......
---
title: Move TimeTrackingEstimateOnlyPane vue component
merge_request: 18318
author: George Tsiolis
type: performance
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment