Skip to content

Commit

Permalink
Formatting changes just to trigger a pipline
Browse files Browse the repository at this point in the history
  • Loading branch information
ze-kel committed Apr 11, 2022
1 parent ba7acd3 commit 729ead6
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
4 changes: 3 additions & 1 deletion packages/renderer/src/components/BookView/ViewConrols.vue
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,11 @@
<script lang="ts" setup>
import { onUnmounted } from 'vue';
import { useStore } from '/@/use/store';
import type { ISortByOption } from '/@main/watcher/openedTabs';
import ButtonsSwitch from '../_UI/ButtonsSwitch.vue';
import type { ISortByOption } from '/@main/watcher/openedTabs';
const store = useStore();
const emit = defineEmits<{
Expand Down
2 changes: 1 addition & 1 deletion packages/renderer/src/components/Editor/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,12 @@ import Cover from '/@/components/Cover/Cover.vue';
import _cloneDeep from 'lodash-es/cloneDeep';
import _debounce from 'lodash-es/debounce';
import { ISBN10to13 } from '/@main/helpers/utils';
import type { PropType } from 'vue';
import type { IFile, ISavedFile, IUnsavedFile } from '/@main/services/files';
import type { IOpenedFile, IOpenedNewFile } from '/@main/watcher/openedTabs';
import type { ContextMenu } from '/@/use/contextMenu';
import { ISBN10to13 } from '/@main/helpers/utils';
const api = useElectron();
const store = useStore();
Expand Down
6 changes: 3 additions & 3 deletions packages/renderer/src/components/Editor/Mikdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
</template>

<script lang="ts" setup>
import { getCurrentInstance, watch, ref, onMounted } from 'vue';
import { Slice } from 'prosemirror-model';
import {
defaultValueCtx,
Expand All @@ -22,11 +23,10 @@ import {
editorViewCtx,
parserCtx,
} from '@milkdown/core';
import type { Ctx } from '@milkdown/core';
import { commonmark } from '@milkdown/preset-commonmark';
import { listener, listenerCtx } from '@milkdown/plugin-listener';
import { getCurrentInstance, watch, ref, onMounted } from 'vue';
import { log } from 'console';
import type { Ctx } from '@milkdown/core';
const internalInstance = getCurrentInstance();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ import { useElectron } from '/@/use/electron';
import { openMenu } from '/@/use/contextMenu';
import { useStore } from '/@/use/store';
import _cloneDeep from 'lodash-es/cloneDeep';
import { getDefaultViewSettings } from '/@/utils/getDefaultViewSettings';
import type { PropType } from 'vue';
import type { IFolderTree } from '/@main/services/files';
import type { IOpenedPath, IViewSettings } from '/@main/watcher/openedTabs';
import type { ContextMenu } from '/@/use/contextMenu';
import type { OpenNewOneParams } from '/@/use/store';
import { getDefaultViewSettings } from '/@/utils/getDefaultViewSettings';
const api = useElectron();
const store = useStore();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,15 @@
import { computed, ref } from 'vue';
import { useElectron } from '/@/use/electron';
import { useStore } from '/@/use/store';
import _cloneDeep from 'lodash-es/cloneDeep';
import BookItem from '/@/components/BookView/BookItem.vue';
import ChallengeYear from './ChallengeYear.vue';
import type { IFile, IFiles, ISavedFile } from '/@main/services/files';
import getSortFunction from '/@/components/BookView/getSortFunction';
import { dateReducerAllYears } from '/@/components/BookView/getDateReducer';
import _cloneDeep from 'lodash-es/cloneDeep';
import type { IFile, IFiles, ISavedFile } from '/@main/services/files';
const api = useElectron();
const store = useStore();
Expand Down

0 comments on commit 729ead6

Please sign in to comment.