Skip to content

Commit

Permalink
fix(directive): remove unused imports
Browse files Browse the repository at this point in the history
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
  • Loading branch information
Antreesy committed May 15, 2024
1 parent 59b8f51 commit be09463
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 22 deletions.
5 changes: 0 additions & 5 deletions src/components/CallView/Grid/Grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ import { loadState } from '@nextcloud/initial-state'
import { generateFilePath } from '@nextcloud/router'

import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'
import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip.js'

import TransitionWrapper from '../../UIShared/TransitionWrapper.vue'
import EmptyCallView from '../shared/EmptyCallView.vue'
Expand Down Expand Up @@ -172,10 +171,6 @@ export default {
ChevronDown,
},

directives: {
Tooltip,
},

props: {
/**
* Developer mode: If enabled it allows to debug the grid using dummy
Expand Down
6 changes: 1 addition & 5 deletions src/components/CallView/shared/ViewerOverlayCallView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ import ArrowExpand from 'vue-material-design-icons/ArrowExpand.vue'
import ChevronDown from 'vue-material-design-icons/ChevronDown.vue'
import ChevronUp from 'vue-material-design-icons/ChevronUp.vue'

import { NcButton, Tooltip } from '@nextcloud/vue'
import NcButton from '@nextcloud/vue/dist/Components/NcButton.js'

import EmptyCallView from './EmptyCallView.vue'
import LocalAudioControlButton from './LocalAudioControlButton.vue'
Expand Down Expand Up @@ -145,10 +145,6 @@ export default {
ArrowExpand,
},

directives: {
tooltip: Tooltip,
},

props: {
token: {
type: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,9 @@
</template>

<script>
import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip.js'

export default {
name: 'Contact',

directives: {
tooltip: Tooltip,
},

props: {
name: {
type: String,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,9 @@
</template>

<script>
import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip.js'

export default {
name: 'DeckCard',

directives: {
tooltip: Tooltip,
},

props: {
type: {
type: String,
Expand Down

0 comments on commit be09463

Please sign in to comment.