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

github.com/nextcloud/contacts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-09-16 19:09:38 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-09-16 19:09:38 +0300
commitdd9449ec6184ca94ecfc0bc9d41137f65b38bde2 (patch)
treee46740ed192a478c0c4b6af6848140310b9d7189
parentfb8003a964278e7a24ff987880703214464e8e33 (diff)
Fix importsfeature/orgChart
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--src/components/AppContent/ChartContent.vue2
-rw-r--r--src/components/ChartTemplate.vue2
-rw-r--r--src/components/OrgChart.vue2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/components/AppContent/ChartContent.vue b/src/components/AppContent/ChartContent.vue
index 6c1f7e7f..cd8718d3 100644
--- a/src/components/AppContent/ChartContent.vue
+++ b/src/components/AppContent/ChartContent.vue
@@ -5,7 +5,7 @@
</template>
<script>
-import AppContent from '@nextcloud/vue/dist/Components/AppContent'
+import AppContent from '@nextcloud/vue/dist/Components/NcAppContent'
import OrgChart from '../OrgChart.vue'
import { getChart, transformNode } from '../../utils/chartUtils'
diff --git a/src/components/ChartTemplate.vue b/src/components/ChartTemplate.vue
index e6b2a65f..b1f0a8f7 100644
--- a/src/components/ChartTemplate.vue
+++ b/src/components/ChartTemplate.vue
@@ -32,7 +32,7 @@
</template>
<script>
-import Avatar from '@nextcloud/vue/dist/Components/Avatar'
+import Avatar from '@nextcloud/vue/dist/Components/NcAvatar'
export default {
name: 'ChartTemplate',
diff --git a/src/components/OrgChart.vue b/src/components/OrgChart.vue
index 15d12ee9..b26d965a 100644
--- a/src/components/OrgChart.vue
+++ b/src/components/OrgChart.vue
@@ -22,7 +22,7 @@
<script>
import Vue from 'vue'
-import Multiselect from '@nextcloud/vue/dist/Components/Multiselect'
+import Multiselect from '@nextcloud/vue/dist/Components/NcMultiselect'
import ChartTemplate from './ChartTemplate.vue'
import { OrgChart } from 'd3-org-chart'
import * as d3 from 'd3'