@@ -64,10 +64,7 @@ const selectLicenseIndex = (index: number | undefined) => {
// TODO: 親コンポーネントからheightを取得できないため一時的にcalcを使用、HelpDialogの構造を再設計後100%に変更する
// height: 100%;
height: calc(100vh - 90px);
-}
-
-.container-detail {
- background-color: colors.$surface;
+ background-color: colors.$background;
border-left: 1px solid colors.$border;
}
diff --git a/src/components/template/HelpUpdateInfoSection.vue b/src/components/template/HelpUpdateInfoSection.vue
index 84d2ee67f6..b5f9a6e8dc 100644
--- a/src/components/template/HelpUpdateInfoSection.vue
+++ b/src/components/template/HelpUpdateInfoSection.vue
@@ -65,7 +65,7 @@ const props =
// TODO: 親コンポーネントからheightを取得できないため一時的にcalcを使用、HelpDialogの構造を再設計後100%に変更する
// height: 100%;
height: calc(100vh - 90px);
- background-color: colors.$surface;
+ background-color: colors.$background;
border-left: 1px solid colors.$border;
}
diff --git a/src/styles/new-colors.scss b/src/styles/new-colors.scss
index 248006a497..068e58535c 100644
--- a/src/styles/new-colors.scss
+++ b/src/styles/new-colors.scss
@@ -7,7 +7,9 @@ $primitive-red: #d04756;
// ライトテーマの色
:root[is-dark-theme="false"] {
- --newcolor-background: #{lighten($primitive-primary, 20%)};
+ --newcolor-background: #{$primitive-white};
+ --newcolor-background-drawer: #{rgba(lighten($primitive-primary, 20%), 0.75)};
+
--newcolor-surface: #{lighten($primitive-primary, 25%)};
--newcolor-border: #{rgba($primitive-black, 0.2)};
--newcolor-selected: #{rgba($primitive-primary, 0.3)};
@@ -42,6 +44,8 @@ $primitive-red: #d04756;
// ダークテーマの色
:root[is-dark-theme="true"] {
--newcolor-background: #{$primitive-black};
+ --newcolor-background-drawer: #{rgba($primitive-black, 0.75)};
+
--newcolor-surface: #{lighten($primitive-black, 3%)};
--newcolor-border: #{rgba($primitive-white, 0.2)};
--newcolor-selected: #{rgba($primitive-primary, 0.3)};
@@ -74,6 +78,8 @@ $primitive-red: #d04756;
}
$background: var(--newcolor-background);
+$background-drawer: var(--newcolor-background-drawer);
+
$surface: var(--newcolor-surface);
$border: var(--newcolor-border);
$selected: var(--newcolor-selected);
From b6a07ddb182158637976b7d682046a9964a17dec Mon Sep 17 00:00:00 2001
From: Takusea <53995265+takusea@users.noreply.github.com>
Date: Sat, 11 May 2024 01:12:46 +0900
Subject: [PATCH 09/16] =?UTF-8?q?[project-redisign-help-dialog]=E3=83=95?=
=?UTF-8?q?=E3=82=A1=E3=82=A4=E3=83=AB=E3=83=91=E3=82=B9=E3=82=92main?=
=?UTF-8?q?=E3=83=AA=E3=83=9D=E3=82=B8=E3=83=88=E3=83=AA=E3=81=AB=E5=90=88?=
=?UTF-8?q?=E3=82=8F=E3=81=9B=E3=82=8B=20(#2059)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* HelpDialog関連のファイルパスをmainリポジトリに合わせる
* Baseディレクトリの名前をPascalCaseに変更
---
src/components/{base => Base}/BaseButton.vue | 0
src/components/{base => Base}/BaseDocumentView.vue | 0
src/components/{base => Base}/BaseListItem.vue | 0
src/components/{base => Base}/BaseRowCard.vue | 0
src/components/{base => Base}/BaseScrollArea.vue | 0
.../{help => Dialog/HelpDialog}/HelpDialog.vue | 12 ++++++------
.../HelpDialog}/HelpLibraryPolicySection.vue | 8 ++++----
.../HelpDialog}/HelpMarkdownViewSection.vue | 4 ++--
.../HelpDialog}/HelpOssLicenseSection.vue | 6 +++---
.../HelpDialog}/HelpUpdateInfoSection.vue | 4 ++--
src/views/EditorHome.vue | 2 +-
11 files changed, 18 insertions(+), 18 deletions(-)
rename src/components/{base => Base}/BaseButton.vue (100%)
rename src/components/{base => Base}/BaseDocumentView.vue (100%)
rename src/components/{base => Base}/BaseListItem.vue (100%)
rename src/components/{base => Base}/BaseRowCard.vue (100%)
rename src/components/{base => Base}/BaseScrollArea.vue (100%)
rename src/components/{help => Dialog/HelpDialog}/HelpDialog.vue (95%)
rename src/components/{template => Dialog/HelpDialog}/HelpLibraryPolicySection.vue (94%)
rename src/components/{template => Dialog/HelpDialog}/HelpMarkdownViewSection.vue (89%)
rename src/components/{template => Dialog/HelpDialog}/HelpOssLicenseSection.vue (91%)
rename src/components/{template => Dialog/HelpDialog}/HelpUpdateInfoSection.vue (94%)
diff --git a/src/components/base/BaseButton.vue b/src/components/Base/BaseButton.vue
similarity index 100%
rename from src/components/base/BaseButton.vue
rename to src/components/Base/BaseButton.vue
diff --git a/src/components/base/BaseDocumentView.vue b/src/components/Base/BaseDocumentView.vue
similarity index 100%
rename from src/components/base/BaseDocumentView.vue
rename to src/components/Base/BaseDocumentView.vue
diff --git a/src/components/base/BaseListItem.vue b/src/components/Base/BaseListItem.vue
similarity index 100%
rename from src/components/base/BaseListItem.vue
rename to src/components/Base/BaseListItem.vue
diff --git a/src/components/base/BaseRowCard.vue b/src/components/Base/BaseRowCard.vue
similarity index 100%
rename from src/components/base/BaseRowCard.vue
rename to src/components/Base/BaseRowCard.vue
diff --git a/src/components/base/BaseScrollArea.vue b/src/components/Base/BaseScrollArea.vue
similarity index 100%
rename from src/components/base/BaseScrollArea.vue
rename to src/components/Base/BaseScrollArea.vue
diff --git a/src/components/help/HelpDialog.vue b/src/components/Dialog/HelpDialog/HelpDialog.vue
similarity index 95%
rename from src/components/help/HelpDialog.vue
rename to src/components/Dialog/HelpDialog/HelpDialog.vue
index 44e901dd78..20c2d68e6f 100644
--- a/src/components/help/HelpDialog.vue
+++ b/src/components/Dialog/HelpDialog/HelpDialog.vue
@@ -77,12 +77,12 @@
diff --git a/src/styles/colors-v2.scss b/src/styles/colors-v2.scss
index 92ebaa73d7..79c757034a 100644
--- a/src/styles/colors-v2.scss
+++ b/src/styles/colors-v2.scss
@@ -10,10 +10,10 @@ $primitive-red: #d04756;
// ライトテーマの色
:root[is-dark-theme="false"] {
- --color-v2-background: #{$primitive-white};
+ --color-v2-background: #{lighten($primitive-primary, 25%)};
--color-v2-background-drawer: #{rgba(lighten($primitive-primary, 20%), 0.75)};
- --color-v2-surface: #{lighten($primitive-primary, 25%)};
+ --color-v2-surface: #{$primitive-white};
--color-v2-border: #{rgba($primitive-black, 0.2)};
--color-v2-selected: #{rgba($primitive-primary, 0.3)};
From 82e1507b601b06042c2ec4b6eb09a90ae33638a4 Mon Sep 17 00:00:00 2001
From: Takusea <53995265+takusea@users.noreply.github.com>
Date: Sat, 6 Jul 2024 05:43:57 +0900
Subject: [PATCH 15/16] =?UTF-8?q?[project-redisign-help-dialog]=20?=
=?UTF-8?q?=E3=83=87=E3=82=B6=E3=82=A4=E3=83=B3=E3=81=AE=E8=AA=BF=E6=95=B4?=
=?UTF-8?q?=20(#2155)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* 横幅が狭いときの表示崩れを修正
* 改段落ができていない箇所に改段落を追加
* スクロールバーの色を濃くする
* table要素のスタイルを追加
* DocumentViewの余白を調節
* div要素を削除
---
public/howtouse.md | 1 +
src/components/Base/BaseDocumentView.vue | 71 +++++++++++++++----
.../Dialog/HelpDialog/HelpDialog.vue | 1 +
src/styles/colors-v2.scss | 12 ++--
src/styles/mixin.scss | 12 ++--
5 files changed, 73 insertions(+), 24 deletions(-)
diff --git a/public/howtouse.md b/public/howtouse.md
index bb49033d75..4dfffa13c6 100644
--- a/public/howtouse.md
+++ b/public/howtouse.md
@@ -30,6 +30,7 @@
その際は Finder で `Ctrl` キーを押しながら VOICEVOX アプリケーションアイコンをクリックし、ショートカットメニューから「開く」を選択してから、「開く」をクリックしてください。
もしくは、アップルメニューから「システム設定」を選択して「プライバシーとセキュリティ」 をクリックし、ページの下にあるセキュリティの「このまま開く」を選んでください。
+
macOS Ventura 以前をお使いの場合は、アップルメニューから「システム環境設定」を選択して「セキュリティとプライバシー」 をクリックし、「一般」パネルで「このまま開く」選んでください。
diff --git a/src/components/Base/BaseDocumentView.vue b/src/components/Base/BaseDocumentView.vue
index 84f14d76f3..8041ad2aad 100644
--- a/src/components/Base/BaseDocumentView.vue
+++ b/src/components/Base/BaseDocumentView.vue
@@ -16,27 +16,33 @@
:deep(h1) {
@include mixin.headline-1;
+ margin-bottom: 2rem;
}
:deep(h2) {
@include mixin.headline-2;
- margin-top: 1.5rem;
+ padding-block: 0.5rem;
+ margin-top: 2rem;
+ margin-bottom: 1.5rem;
border-bottom: 1px solid colors.$border;
}
:deep(h3) {
@include mixin.headline-3;
- margin-top: 1.5rem;
+ margin-top: 1.75rem;
+ margin-bottom: 1rem;
}
:deep(h4) {
@include mixin.headline-4;
- margin-top: 1.25rem;
+ margin-top: 1.5rem;
+ margin-bottom: 0.5rem;
}
:deep(h5) {
@include mixin.headline-5;
margin-top: 1rem;
+ margin-bottom: 0.25rem;
}
:deep(h6) {
@@ -46,12 +52,19 @@
:deep(p) {
line-height: 1.75;
- margin-top: 1rem;
+ margin-bottom: 1rem;
}
- :deep(div > ul),
- :deep(div > ol) {
- margin-top: 1rem;
+ :deep(ul),
+ :deep(ol) {
+ padding-left: 1.5rem;
+ }
+
+ :deep(> ul),
+ :deep(> ol),
+ :deep(:where(div, details) > ul),
+ :deep(:where(div, details) > ol) {
+ margin-bottom: 1rem;
}
:deep(li) {
@@ -68,10 +81,16 @@
}
:deep(img) {
- margin-top: 0.5rem;
border: 1px solid colors.$border;
border-radius: vars.$radius-1;
vertical-align: middle;
+ max-width: 100%;
+ }
+
+ :deep(> img),
+ :deep(:where(div, details) > img) {
+ display: block;
+ margin-bottom: 1rem;
}
:deep(hr) {
@@ -84,7 +103,7 @@
:deep(pre) {
padding: vars.$padding-1;
- margin-top: 1rem;
+ margin-bottom: 1rem;
background-color: colors.$surface;
border: 1px solid colors.$border;
border-radius: vars.$radius-1;
@@ -97,19 +116,43 @@
border-radius: 4px;
}
+ :deep(table) {
+ border-collapse: separate;
+ border-spacing: 0;
+ border-radius: vars.$radius-1;
+ border: 1px solid colors.$border;
+ }
+
+ :deep(tr) {
+ height: vars.$size-control;
+ }
+
+ :deep(td),
+ :deep(th) {
+ padding-inline: vars.$padding-2;
+ }
+
+ :deep(td) {
+ border-top: 1px solid colors.$border;
+ }
+
:deep(details) {
- padding: vars.$padding-1;
+ margin-bottom: 1rem;
+ padding: vars.$padding-2;
background-color: colors.$surface;
border: 1px solid colors.$border;
border-radius: vars.$radius-1;
}
:deep(summary) {
- padding: vars.$padding-1;
- margin: calc(#{vars.$padding-1} * -1);
+ padding: vars.$padding-2;
+ margin: calc(#{vars.$padding-2} * -1);
cursor: pointer;
}
+ :deep(details[open] > summary) {
+ margin-bottom: 0;
+ }
:deep(summary::before) {
content: "▶ ";
}
@@ -117,5 +160,9 @@
:deep(details[open] > summary::before) {
content: "▼ ";
}
+
+ :deep(:last-child) {
+ margin-bottom: 0;
+ }
}
diff --git a/src/components/Dialog/HelpDialog/HelpDialog.vue b/src/components/Dialog/HelpDialog/HelpDialog.vue
index 393bd8a79f..9935c5d11a 100644
--- a/src/components/Dialog/HelpDialog/HelpDialog.vue
+++ b/src/components/Dialog/HelpDialog/HelpDialog.vue
@@ -298,6 +298,7 @@ const openLogDirectory = window.backend.openLogDirectory;
.list-wrapper {
margin-top: 66px;
height: calc(100vh - 90px);
+ width: max-content;
}
.list-inner {
diff --git a/src/styles/colors-v2.scss b/src/styles/colors-v2.scss
index 79c757034a..34561a7146 100644
--- a/src/styles/colors-v2.scss
+++ b/src/styles/colors-v2.scss
@@ -39,9 +39,9 @@ $primitive-red: #d04756;
--color-v2-warning-hovered: #{lighten($primitive-red, 40%)};
--color-v2-warning-pressed: #{lighten($primitive-red, 35%)};
- --color-v2-scrollbar: #{rgba($primitive-black, 0.2)};
- --color-v2-scrollbar-hovered: #{rgba($primitive-black, 0.3)};
- --color-v2-scrollbar-pressed: #{rgba($primitive-black, 0.4)};
+ --color-v2-scrollbar: #{rgba($primitive-black, 0.3)};
+ --color-v2-scrollbar-hovered: #{rgba($primitive-black, 0.4)};
+ --color-v2-scrollbar-pressed: #{rgba($primitive-black, 0.5)};
}
// ダークテーマの色
@@ -75,9 +75,9 @@ $primitive-red: #d04756;
--color-v2-warning-hovered: #{darken($primitive-red, 35%)};
--color-v2-warning-pressed: #{darken($primitive-red, 30%)};
- --color-v2-scrollbar: #{rgba($primitive-white, 0.2)};
- --color-v2-scrollbar-hovered: #{rgba($primitive-white, 0.3)};
- --color-v2-scrollbar-pressed: #{rgba($primitive-white, 0.4)};
+ --color-v2-scrollbar: #{rgba($primitive-white, 0.3)};
+ --color-v2-scrollbar-hovered: #{rgba($primitive-white, 0.4)};
+ --color-v2-scrollbar-pressed: #{rgba($primitive-white, 0.5)};
}
$background: var(--color-v2-background);
diff --git a/src/styles/mixin.scss b/src/styles/mixin.scss
index 48c33d30a2..e547874fa0 100644
--- a/src/styles/mixin.scss
+++ b/src/styles/mixin.scss
@@ -8,7 +8,7 @@
@mixin headline-1 {
font-size: 1.75rem;
font-weight: 600;
- line-height: 2;
+ line-height: 1.5;
margin: 0;
}
@@ -16,7 +16,7 @@
@mixin headline-2 {
font-size: 1.25rem;
font-weight: bold;
- line-height: 2;
+ line-height: 1.5;
margin: 0;
}
@@ -24,7 +24,7 @@
@mixin headline-3 {
font-size: 1.125rem;
font-weight: bold;
- line-height: 2;
+ line-height: 1.5;
margin: 0;
}
@@ -32,7 +32,7 @@
@mixin headline-4 {
font-size: 1rem;
font-weight: bold;
- line-height: 2;
+ line-height: 1.5;
margin: 0;
}
@@ -40,7 +40,7 @@
@mixin headline-5 {
font-size: 0.875rem;
font-weight: bold;
- line-height: 2;
+ line-height: 1.5;
margin: 0;
}
@@ -48,6 +48,6 @@
@mixin headline-6 {
font-size: 0.75rem;
font-weight: bold;
- line-height: 2;
+ line-height: 1.5;
margin: 0;
}
From 2b1aec7dc146f27ca545db9e88233f413d0f7e13 Mon Sep 17 00:00:00 2001
From: Takusea <53995265+takusea@users.noreply.github.com>
Date: Thu, 25 Jul 2024 02:31:35 +0900
Subject: [PATCH 16/16] =?UTF-8?q?[project-redesign-help-dialog]main?=
=?UTF-8?q?=E3=83=AA=E3=83=9D=E3=82=B8=E3=83=88=E3=83=AA=E3=81=B8=E3=81=AE?=
=?UTF-8?q?=E3=83=9E=E3=83=BC=E3=82=B8=E3=81=AB=E5=90=91=E3=81=91=E3=81=9F?=
=?UTF-8?q?=E6=9C=80=E7=B5=82=E8=AA=BF=E6=95=B4=20(#2160)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* 拡張子を.spec.tsに変更
* summary要素のスタイルを追加
* display,display-on-colorにlightenを追加
* SCSS変数を用いるように変更
* HelpDialogコンポーネントのパスを修正
* 新デザインで用いるscssファイルのパスをstyles/v2下に変更
* 不要なuseを削除
---
src/components/Base/BaseButton.vue | 6 ++---
src/components/Base/BaseDocumentView.vue | 6 ++---
src/components/Base/BaseListItem.vue | 6 ++---
src/components/Base/BaseRowCard.vue | 6 ++---
src/components/Base/BaseScrollArea.vue | 4 +--
.../Dialog/HelpDialog/HelpDialog.vue | 8 +++---
.../HelpDialog/HelpLibraryPolicySection.vue | 6 ++---
.../HelpDialog/HelpMarkdownViewSection.vue | 4 +--
.../HelpDialog/HelpOssLicenseSection.vue | 6 ++---
.../HelpDialog/HelpUpdateInfoSection.vue | 18 ++++++-------
.../Dialog/ImportSongProjectDialog.vue | 10 ++++++++
src/styles/_index.scss | 3 ++-
src/styles/{colors-v2.scss => v2/colors.scss} | 4 +--
src/styles/{ => v2}/mixin.scss | 0
src/styles/v2/variables.scss | 24 ++++++++++++++++++
src/styles/variables.scss | 25 -------------------
...ion.ts => HelpMarkdownViewSection.spec.ts} | 2 +-
17 files changed, 73 insertions(+), 65 deletions(-)
rename src/styles/{colors-v2.scss => v2/colors.scss} (97%)
rename src/styles/{ => v2}/mixin.scss (100%)
create mode 100644 src/styles/v2/variables.scss
rename tests/unit/components/help/{HelpMarkdownViewSection.ts => HelpMarkdownViewSection.spec.ts} (87%)
diff --git a/src/components/Base/BaseButton.vue b/src/components/Base/BaseButton.vue
index 401f3c91ac..fd7a09e501 100644
--- a/src/components/Base/BaseButton.vue
+++ b/src/components/Base/BaseButton.vue
@@ -23,9 +23,9 @@ defineEmits<{
diff --git a/src/components/Dialog/ImportSongProjectDialog.vue b/src/components/Dialog/ImportSongProjectDialog.vue
index 70cb072a58..8bc528f960 100644
--- a/src/components/Dialog/ImportSongProjectDialog.vue
+++ b/src/components/Dialog/ImportSongProjectDialog.vue
@@ -301,3 +301,13 @@ const handleCancel = () => {
onDialogCancel();
};
+
+
diff --git a/src/styles/_index.scss b/src/styles/_index.scss
index 7216c8fa49..dad189293b 100644
--- a/src/styles/_index.scss
+++ b/src/styles/_index.scss
@@ -1,6 +1,7 @@
@use './variables' as vars;
@use './colors' as colors;
-@use './colors-v2' as colors-v2;
+@use './v2/variables' as vars-v2;
+@use './v2/colors' as colors-v2;
@import "./fonts";
// 優先度を強引に上げる
diff --git a/src/styles/colors-v2.scss b/src/styles/v2/colors.scss
similarity index 97%
rename from src/styles/colors-v2.scss
rename to src/styles/v2/colors.scss
index 34561a7146..0be6e9fc8c 100644
--- a/src/styles/colors-v2.scss
+++ b/src/styles/v2/colors.scss
@@ -17,8 +17,8 @@ $primitive-red: #d04756;
--color-v2-border: #{rgba($primitive-black, 0.2)};
--color-v2-selected: #{rgba($primitive-primary, 0.3)};
- --color-v2-display: #{$primitive-black, 10%};
- --color-v2-display-oncolor: #{$primitive-black, 10%};
+ --color-v2-display: #{lighten($primitive-black, 10%)};
+ --color-v2-display-oncolor: #{lighten($primitive-black, 10%)};
--color-v2-display-sub: #{rgba($primitive-black, 0.5)};
--color-v2-display-link: #{$primitive-blue};
--color-v2-display-warning: #{$primitive-red};
diff --git a/src/styles/mixin.scss b/src/styles/v2/mixin.scss
similarity index 100%
rename from src/styles/mixin.scss
rename to src/styles/v2/mixin.scss
diff --git a/src/styles/v2/variables.scss b/src/styles/v2/variables.scss
new file mode 100644
index 0000000000..e61d32c06d
--- /dev/null
+++ b/src/styles/v2/variables.scss
@@ -0,0 +1,24 @@
+:root {
+ --size-basis: 8px;
+ --padding-basis: 8px;
+ --gap-basis: 8px;
+ --radius-basis: 8px;
+}
+
+$size-scrollbar: calc(var(--size-basis) * 1.5);
+$size-icon: calc(var(--size-basis) * 2);
+$size-indicator: calc(var(--size-basis) * 3);
+$size-control: calc(var(--size-basis) * 4);
+$size-listitem: calc(var(--size-basis) * 5);
+$size-fab: calc(var(--size-basis) * 6);
+
+$padding-1: var(--padding-basis);
+$padding-2: calc(var(--padding-basis) * 2);
+
+$gap-1: var(--gap-basis);
+$gap-2: calc(var(--gap-basis) * 2);
+
+$radius-1: var(--radius-basis);
+$radius-2: calc(var(--radius-basis) * 2);
+
+$transition-duration: 100ms;
diff --git a/src/styles/variables.scss b/src/styles/variables.scss
index 145de998ea..d87e1641b6 100644
--- a/src/styles/variables.scss
+++ b/src/styles/variables.scss
@@ -6,28 +6,3 @@ $menubar-height: 24px;
$detail-view-splitter-cell-z-index: 2;
$character-item-size: 215px; // キャラクター並び替えダイアログなどでの1キャラ表示要素の横幅
-
-:root {
- --size-basis: 8px;
- --padding-basis: 8px;
- --gap-basis: 8px;
- --radius-basis: 8px;
-}
-
-$size-scrollbar: calc(var(--size-basis) * 1.5);
-$size-icon: calc(var(--size-basis) * 2);
-$size-indicator: calc(var(--size-basis) * 3);
-$size-control: calc(var(--size-basis) * 4);
-$size-listitem: calc(var(--size-basis) * 5);
-$size-fab: calc(var(--size-basis) * 6);
-
-$padding-1: var(--padding-basis);
-$padding-2: calc(var(--padding-basis) * 2);
-
-$gap-1: var(--gap-basis);
-$gap-2: calc(var(--gap-basis) * 2);
-
-$radius-1: var(--radius-basis);
-$radius-2: calc(var(--radius-basis) * 2);
-
-$transition-duration: 100ms;
diff --git a/tests/unit/components/help/HelpMarkdownViewSection.ts b/tests/unit/components/help/HelpMarkdownViewSection.spec.ts
similarity index 87%
rename from tests/unit/components/help/HelpMarkdownViewSection.ts
rename to tests/unit/components/help/HelpMarkdownViewSection.spec.ts
index 4f38f080fe..2e6a024e0e 100644
--- a/tests/unit/components/help/HelpMarkdownViewSection.ts
+++ b/tests/unit/components/help/HelpMarkdownViewSection.spec.ts
@@ -1,6 +1,6 @@
import { mount, flushPromises } from "@vue/test-utils";
import { describe, it } from "vitest";
-import HelpMarkdownViewSection from "@/components/template/HelpMarkdownViewSection.vue";
+import HelpMarkdownViewSection from "@/components/Dialog/HelpDialog/HelpMarkdownViewSection.vue";
import { markdownItPlugin } from "@/plugins/markdownItPlugin";
describe("HelpMarkdownViewSection.vue", () => {