Skip to content

Commit

Permalink
fixup! Upgrade to Nextcloud vue 8.0.0
Browse files Browse the repository at this point in the history
Signed-off-by: greta <[email protected]>
  • Loading branch information
GretaD committed Nov 8, 2023
1 parent 64e1164 commit 13411ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/OrgChart.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<h3>
{{ t('contacts', 'Chart') }}:
</h3>
<Multiselect v-model="chart"
<NcSelect v-model="chart"
class="chart-selection"
:disabled="data.length === 1"
:options="charts"
Expand All @@ -23,15 +23,15 @@
import * as d3 from 'd3'
import ChartTemplate from './ChartTemplate.vue'
import { getLocale } from '@nextcloud/l10n'
import { NcMultiselect as Multiselect } from '@nextcloud/vue'
import { NcSelect } from '@nextcloud/vue'
import { OrgChart } from 'd3-org-chart'
import router from './../router/index.js'
import Vue from 'vue'
export default {
name: 'OrgChart',
components: {
Multiselect,
NcSelect,
},
props: {
data: {
Expand Down

0 comments on commit 13411ec

Please sign in to comment.