fix mixin import paths

This commit is contained in:
mahula 2022-07-28 14:48:08 +02:00
parent ca095af50f
commit 858b9910ee
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@
</div>
</template>
<script>
import { copyLinks } from '@/mixins/copyLinks'
import { copyLinks } from '../mixins/copyLinks'
export default {
name: 'ClipboardCopy',
mixins: [copyLinks],

View File

@ -76,7 +76,7 @@ import MemoRow from '../TransactionRows/MemoRow'
import DateRow from '../TransactionRows/DateRow'
import DecayRow from '../TransactionRows/DecayRow'
import FigureQrCode from '@/components/QrCode/FigureQrCode.vue'
import { copyLinks } from '@/mixins/copyLinks'
import { copyLinks } from '../../mixins/copyLinks'
export default {
name: 'TransactionLink',