Commit 93c55f58 authored by George Tsiolis's avatar George Tsiolis

Move TimeTrackingHelpState vue component

parent 174950b6
<script>
import { sprintf, s__ } from '../../../locale'; import { sprintf, s__ } from '../../../locale';
export default { export default {
name: 'time-tracking-help-state', name: 'TimeTrackingHelpState',
props: { props: {
rootPath: { rootPath: {
type: String, type: String,
...@@ -27,7 +28,10 @@ export default { ...@@ -27,7 +28,10 @@ export default {
); );
}, },
}, },
template: ` };
</script>
<template>
<div class="time-tracking-help-state"> <div class="time-tracking-help-state">
<div class="time-tracking-info"> <div class="time-tracking-info">
<h4> <h4>
...@@ -48,5 +52,4 @@ export default { ...@@ -48,5 +52,4 @@ export default {
</a> </a>
</div> </div>
</div> </div>
`, </template>
};
<script> <script>
import timeTrackingHelpState from './help_state'; import TimeTrackingHelpState from './help_state.vue';
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';
...@@ -16,7 +16,7 @@ export default { ...@@ -16,7 +16,7 @@ export default {
'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,
'time-tracking-help-state': timeTrackingHelpState, TimeTrackingHelpState,
}, },
props: { props: {
time_estimate: { time_estimate: {
......
---
title: Move TimeTrackingHelpState vue component
merge_request: 18319
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