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

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-04-15 16:33:04 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-04-15 22:25:28 +0300
commit7546257d129072ea47f990b7408df3e2d8068a76 (patch)
tree85902afed7daa5abe98c8ffde9bf3bc47333752e /src/components
parent7392c1e1785db63ef61ec01e127605590277ba02 (diff)
Use @nextcloud/moment, closes #961
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/AppNavigation/TheSettings.vue1
-rw-r--r--src/components/TaskBody.vue1
-rw-r--r--src/components/TheCollections/General.vue1
-rw-r--r--src/components/TheCollections/Week.vue1
-rw-r--r--src/components/TheDetails.vue1
5 files changed, 5 insertions, 0 deletions
diff --git a/src/components/AppNavigation/TheSettings.vue b/src/components/AppNavigation/TheSettings.vue
index 69d4010b..b4c683c4 100644
--- a/src/components/AppNavigation/TheSettings.vue
+++ b/src/components/AppNavigation/TheSettings.vue
@@ -61,6 +61,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
</template>
<script>
+import moment from '@nextcloud/moment'
import { mapState, mapGetters, mapActions } from 'vuex'
export default {
diff --git a/src/components/TaskBody.vue b/src/components/TaskBody.vue
index c3a73040..501dd2cc 100644
--- a/src/components/TaskBody.vue
+++ b/src/components/TaskBody.vue
@@ -158,6 +158,7 @@ import { linkify } from '../directives/linkify.js'
import TaskStatusDisplay from './TaskStatusDisplay'
import TaskDragContainer from './TaskDragContainer'
+import moment from '@nextcloud/moment'
import Actions from '@nextcloud/vue/dist/Components/Actions'
import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
import { showError } from '@nextcloud/dialogs'
diff --git a/src/components/TheCollections/General.vue b/src/components/TheCollections/General.vue
index d20da38e..2b0bc125 100644
--- a/src/components/TheCollections/General.vue
+++ b/src/components/TheCollections/General.vue
@@ -62,6 +62,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
</template>
<script>
+import moment from '@nextcloud/moment'
import { mapGetters, mapActions } from 'vuex'
import { sort, isTaskInList, isParentInList } from '../../store/storeHelper'
import SortorderDropdown from '../SortorderDropdown'
diff --git a/src/components/TheCollections/Week.vue b/src/components/TheCollections/Week.vue
index 2ad23ec4..0053955a 100644
--- a/src/components/TheCollections/Week.vue
+++ b/src/components/TheCollections/Week.vue
@@ -59,6 +59,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
</template>
<script>
+import moment from '@nextcloud/moment'
import { mapGetters, mapActions } from 'vuex'
import { sort, isTaskInList } from '../../store/storeHelper'
import SortorderDropdown from '../SortorderDropdown'
diff --git a/src/components/TheDetails.vue b/src/components/TheDetails.vue
index 593cfd2a..413ea1fd 100644
--- a/src/components/TheDetails.vue
+++ b/src/components/TheDetails.vue
@@ -384,6 +384,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
<script>
import { mapGetters, mapActions } from 'vuex'
import { overdue } from '../store/storeHelper'
+import moment from '@nextcloud/moment'
import DatetimePicker from '@nextcloud/vue/dist/Components/DatetimePicker'
import Multiselect from '@nextcloud/vue/dist/Components/Multiselect'
import Markdown from './Markdown'