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-07 13:13:49 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2020-04-07 13:13:49 +0300
commit786d1216b9533185689bbe69fc1e36260a69e36e (patch)
tree43ec6b05ba327f5d1956dd61153f7b717e0a28bd /src/components
parent2f23a9012ead1e3445f8a65f4b385341150945b7 (diff)
Fix @nextcloud/vue imports
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/AppNavigation/CalendarShare.vue2
-rw-r--r--src/components/AppNavigation/CalendarSharee.vue8
-rw-r--r--src/components/DeleteCompletedModal.vue2
-rw-r--r--src/components/SortorderDropdown.vue4
-rw-r--r--src/components/TheDetails.vue4
5 files changed, 10 insertions, 10 deletions
diff --git a/src/components/AppNavigation/CalendarShare.vue b/src/components/AppNavigation/CalendarShare.vue
index 707b30e6..9ec2cecc 100644
--- a/src/components/AppNavigation/CalendarShare.vue
+++ b/src/components/AppNavigation/CalendarShare.vue
@@ -52,7 +52,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<script>
import client from '../../services/cdav'
-import { Multiselect } from '@nextcloud/vue/dist/Components/Multiselect'
+import Multiselect from '@nextcloud/vue/dist/Components/Multiselect'
import CalendarSharee from './CalendarSharee'
// import debounce from 'debounce'
diff --git a/src/components/AppNavigation/CalendarSharee.vue b/src/components/AppNavigation/CalendarSharee.vue
index 6ff519b0..e968b48a 100644
--- a/src/components/AppNavigation/CalendarSharee.vue
+++ b/src/components/AppNavigation/CalendarSharee.vue
@@ -57,10 +57,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
</template>
<script>
-import { ActionButton } from '@nextcloud/vue/dist/Components/ActionButton'
-import { ActionCheckbox } from '@nextcloud/vue/dist/Components/ActionCheckbox'
-import { AppNavigationItem } from '@nextcloud/vue/dist/Components/AppNavigationItem'
-import { Avatar } from '@nextcloud/vue/dist/Components/Avatar'
+import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
+import ActionCheckbox from '@nextcloud/vue/dist/Components/ActionCheckbox'
+import AppNavigationItem from '@nextcloud/vue/dist/Components/AppNavigationItem'
+import Avatar from '@nextcloud/vue/dist/Components/Avatar'
export default {
name: 'CalendarSharee',
diff --git a/src/components/DeleteCompletedModal.vue b/src/components/DeleteCompletedModal.vue
index 07fd43a0..62b105f2 100644
--- a/src/components/DeleteCompletedModal.vue
+++ b/src/components/DeleteCompletedModal.vue
@@ -76,7 +76,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
<script>
import { mapGetters, mapActions } from 'vuex'
-import { Modal } from '@nextcloud/vue/dist/Components/Modal'
+import Modal from '@nextcloud/vue/dist/Components/Modal'
export default {
components: {
diff --git a/src/components/SortorderDropdown.vue b/src/components/SortorderDropdown.vue
index 6494e143..5502da9f 100644
--- a/src/components/SortorderDropdown.vue
+++ b/src/components/SortorderDropdown.vue
@@ -41,8 +41,8 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
</template>
<script>
-import { Actions } from '@nextcloud/vue/dist/Components/Actions'
-import { ActionButton } from '@nextcloud/vue/dist/Components/ActionButton'
+import Actions from '@nextcloud/vue/dist/Components/Actions'
+import ActionButton from '@nextcloud/vue/dist/Components/ActionButton'
export default {
name: 'SortorderDropdown',
diff --git a/src/components/TheDetails.vue b/src/components/TheDetails.vue
index 6c1b6b67..593cfd2a 100644
--- a/src/components/TheDetails.vue
+++ b/src/components/TheDetails.vue
@@ -384,8 +384,8 @@ 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 { DatetimePicker } from '@nextcloud/vue/dist/Components/DatetimePicker'
-import { Multiselect } from '@nextcloud/vue/dist/Components/Multiselect'
+import DatetimePicker from '@nextcloud/vue/dist/Components/DatetimePicker'
+import Multiselect from '@nextcloud/vue/dist/Components/Multiselect'
import Markdown from './Markdown'
import TaskStatusDisplay from './TaskStatusDisplay'