summaryrefslogtreecommitdiffstats
path: root/src/components/OrgChart.vue
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-11-05 07:40:20 +0000
committerjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2022-11-08 18:35:11 +0100
commit85ffd7158bc76c6a1b32273393af0e2cb0a9ca48 (patch)
tree8a40037bc9e409b1e89f46c66526b6d6998d7fe5 /src/components/OrgChart.vue
parentec0dd03c67dc53e359afafab3372b7a6780e1931 (diff)
Bump @nextcloud/eslint-config from 6.1.2 to 8.1.2
Fix all file extension related to new rules from eslint-config-8.1.2 Bumps [@nextcloud/eslint-config](https://github.com/nextcloud/eslint-config) from 6.1.2 to 8.1.2. - [Release notes](https://github.com/nextcloud/eslint-config/releases) - [Changelog](https://github.com/nextcloud/eslint-config/blob/master/CHANGELOG.md) - [Commits](https://github.com/nextcloud/eslint-config/compare/v6.1.2...v8.1.2) --- updated-dependencies: - dependency-name: "@nextcloud/eslint-config" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'src/components/OrgChart.vue')
-rw-r--r--src/components/OrgChart.vue7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/OrgChart.vue b/src/components/OrgChart.vue
index 2ad9a99c..3b2dd21f 100644
--- a/src/components/OrgChart.vue
+++ b/src/components/OrgChart.vue
@@ -4,8 +4,7 @@
<h3>
{{ t('contacts', 'Chart') }}:
</h3>
- <Multiselect
- v-model="chart"
+ <Multiselect v-model="chart"
class="chart-selection"
:disabled="data.length === 1"
:options="charts"
@@ -24,9 +23,9 @@
import * as d3 from 'd3'
import ChartTemplate from './ChartTemplate.vue'
import { getLocale } from '@nextcloud/l10n'
-import Multiselect from '@nextcloud/vue/dist/Components/NcMultiselect'
+import Multiselect from '@nextcloud/vue/dist/Components/NcMultiselect.js'
import { OrgChart } from 'd3-org-chart'
-import router from './../router'
+import router from './../router/index.js'
import Vue from 'vue'
export default {