Skip to content

Commit

Permalink
HelpDialog関連のファイルパスをmainリポジトリに合わせる
Browse files Browse the repository at this point in the history
  • Loading branch information
takusea committed May 5, 2024
1 parent 9521894 commit e173886
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@

<script setup lang="ts">
import { computed, ref, type Component } from "vue";
import BaseScrollArea from "../base/BaseScrollArea.vue";
import BaseListItem from "../base/BaseListItem.vue";
import MarkdownView from "../template/HelpMarkdownViewSection.vue";
import OssLicense from "../template/HelpOssLicenseSection.vue";
import UpdateInfo from "../template/HelpUpdateInfoSection.vue";
import LibraryPolicy from "../template/HelpLibraryPolicySection.vue";
import MarkdownView from "./HelpMarkdownViewSection.vue";
import OssLicense from "./HelpOssLicenseSection.vue";
import UpdateInfo from "./HelpUpdateInfoSection.vue";
import LibraryPolicy from "./HelpLibraryPolicySection.vue";
import BaseListItem from "@/components/Base/BaseListItem.vue";

Check failure on line 84 in src/components/Dialog/HelpDialog/HelpDialog.vue

View workflow job for this annotation

GitHub Actions / lint

Already included file name '/home/runner/work/voicevox/voicevox/src/components/Base/BaseListItem.vue.ts' differs from file name '/home/runner/work/voicevox/voicevox/src/components/base/BaseListItem.vue.ts' only in casing.
import BaseScrollArea from "@/components/Base/BaseScrollArea.vue";
import { UpdateInfo as UpdateInfoObject } from "@/type/preload";
import { useStore } from "@/store";
import { useFetchNewUpdateInfos } from "@/composables/useFetchNewUpdateInfos";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@

<script setup lang="ts">
import { computed, ref } from "vue";
import BaseRowCard from "../base/BaseRowCard.vue";
import BaseScrollArea from "../base/BaseScrollArea.vue";
import BaseButton from "../base/BaseButton.vue";
import BaseDocumentView from "../base/BaseDocumentView.vue";
import BaseRowCard from "@/components/Base/BaseRowCard.vue";
import BaseScrollArea from "@/components/Base/BaseScrollArea.vue";
import BaseButton from "@/components/Base/BaseButton.vue";
import BaseDocumentView from "@/components/Base/BaseDocumentView.vue";
import { useStore } from "@/store";
import { useMarkdownIt } from "@/plugins/markdownItPlugin";
import { EngineId, SpeakerId } from "@/type/preload";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@

<script setup lang="ts">
import { onMounted, ref } from "vue";
import BaseDocumentView from "../base/BaseDocumentView.vue";
import BaseScrollArea from "../base/BaseScrollArea.vue";
import BaseDocumentView from "@/components/Base/BaseDocumentView.vue";

Check failure on line 16 in src/components/Dialog/HelpDialog/HelpMarkdownViewSection.vue

View workflow job for this annotation

GitHub Actions / lint

Already included file name '/home/runner/work/voicevox/voicevox/src/components/Base/BaseDocumentView.vue.ts' differs from file name '/home/runner/work/voicevox/voicevox/src/components/base/BaseDocumentView.vue.ts' only in casing.
import BaseScrollArea from "@/components/Base/BaseScrollArea.vue";

Check failure on line 17 in src/components/Dialog/HelpDialog/HelpMarkdownViewSection.vue

View workflow job for this annotation

GitHub Actions / lint

Already included file name '/home/runner/work/voicevox/voicevox/src/components/Base/BaseScrollArea.vue.ts' differs from file name '/home/runner/work/voicevox/voicevox/src/components/base/BaseScrollArea.vue.ts' only in casing.
import { useMarkdownIt } from "@/plugins/markdownItPlugin";
const props =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@

<script setup lang="ts">
import { ref } from "vue";
import BaseRowCard from "../base/BaseRowCard.vue";
import BaseButton from "../base/BaseButton.vue";
import BaseScrollArea from "../base/BaseScrollArea.vue";
import BaseRowCard from "@/components/Base/BaseRowCard.vue";

Check failure on line 42 in src/components/Dialog/HelpDialog/HelpOssLicenseSection.vue

View workflow job for this annotation

GitHub Actions / lint

Already included file name '/home/runner/work/voicevox/voicevox/src/components/Base/BaseRowCard.vue.ts' differs from file name '/home/runner/work/voicevox/voicevox/src/components/base/BaseRowCard.vue.ts' only in casing.
import BaseButton from "@/components/Base/BaseButton.vue";

Check failure on line 43 in src/components/Dialog/HelpDialog/HelpOssLicenseSection.vue

View workflow job for this annotation

GitHub Actions / lint

Already included file name '/home/runner/work/voicevox/voicevox/src/components/Base/BaseButton.vue.ts' differs from file name '/home/runner/work/voicevox/voicevox/src/components/base/BaseButton.vue.ts' only in casing.
import BaseScrollArea from "@/components/Base/BaseScrollArea.vue";
const props =
defineProps<{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
</template>

<script setup lang="ts">
import BaseScrollArea from "../base/BaseScrollArea.vue";
import BaseDocumentView from "../base/BaseDocumentView.vue";
import BaseScrollArea from "@/components/Base/BaseScrollArea.vue";
import BaseDocumentView from "@/components/Base/BaseDocumentView.vue";
import { UpdateInfo } from "@/type/preload";
const props =
Expand Down
2 changes: 1 addition & 1 deletion src/views/EditorHome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ import AudioCell from "@/components/AudioCell.vue";
import AudioDetail from "@/components/AudioDetail.vue";
import AudioInfo from "@/components/AudioInfo.vue";
import MenuBar from "@/components/MenuBar.vue";
import HelpDialog from "@/components/help/HelpDialog.vue";
import HelpDialog from "@/components/Dialog/HelpDialog/HelpDialog.vue";
import SettingDialog from "@/components/SettingDialog.vue";
import HotkeySettingDialog from "@/components/HotkeySettingDialog.vue";
import HeaderBarCustomDialog from "@/components/HeaderBarCustomDialog.vue";
Expand Down

0 comments on commit e173886

Please sign in to comment.