Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { debounce } from 'lodash';
import debounce from 'lodash/debounce';
import { ref, computed, onBeforeMount, watch } from 'vue';
import { useRoute } from 'vue-router/composables';
import { useQueryParams } from './useQueryParams';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { pickBy } from 'lodash';
import pickBy from 'lodash/pickBy';
import { useRouter } from 'vue-router/composables';

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { pickBy, isEqual } from 'lodash';
import pickBy from 'lodash/pickBy';
import isEqual from 'lodash/isEqual';
import { ref, computed, unref, watch, nextTick } from 'vue';
import { useRoute } from 'vue-router/composables';
import { useQueryParams } from './useQueryParams';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
import { mapGetters, mapActions } from 'vuex';
import { getCurrentInstance, onMounted, ref, computed, watch } from 'vue';
import { transform } from 'lodash';
import transform from 'lodash/transform';
import { RouteNames, rowsPerPageItems } from '../../constants';
import { useTable } from '../../composables/useTable';
import { useKeywordSearch } from '../../composables/useKeywordSearch';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@

import { defineComponent, ref, computed, onUnmounted, onMounted, watch } from 'vue';
import { NodeViewWrapper } from '@tiptap/vue-2';
import _ from 'lodash';
import debounce from 'lodash/debounce';

export default defineComponent({
name: 'ImageNodeView',
Expand All @@ -89,7 +89,7 @@
let resizeListeners = null;

// Create debounced version of saveSize function
const debouncedSaveSize = _.debounce(() => {
const debouncedSaveSize = debounce(() => {
props.updateAttributes({
width: width.value,
height: height.value,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ref, watch } from 'vue';
import { throttle } from 'lodash';
import throttle from 'lodash/throttle';
import { isTouchDevice } from 'shared/utils/browserInfo';

export function useModalPositioning() {
Expand Down