diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 1f13f4fa2fb1..222a14d28df7 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -40,8 +40,6 @@ jobs:
needs: [pnpm_install]
runs-on: ubuntu-latest
continue-on-error: true
- env:
- eslint-cache-version: v1
strategy:
matrix:
workspace:
@@ -49,6 +47,9 @@ jobs:
- frontend
- sw
- misskey-js
+ env:
+ eslint-cache-version: v1
+ eslint-cache-path: ${{ github.workspace }}/node_modules/.cache/eslint-${{ matrix.workspace }}
steps:
- uses: actions/checkout@v4.1.1
with:
@@ -64,11 +65,10 @@ jobs:
- name: Restore eslint cache
uses: actions/cache@v4.0.2
with:
- path: node_modules/.cache/eslint
- key: eslint-${{ env.eslint-cache-version }}-${{ hashFiles('/pnpm-lock.yaml') }}-${{ github.ref_name }}-${{ github.sha }}
- restore-keys: |
- eslint-${{ env.eslint-cache-version }}-${{ hashFiles('/pnpm-lock.yaml') }}-
- - run: pnpm --filter ${{ matrix.workspace }} run eslint --cache --cache-location node_modules/.cache/eslint --cache-strategy content
+ path: ${{ env.eslint-cache-path }}
+ key: eslint-${{ env.eslint-cache-version }}-${{ matrix.workspace }}-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ github.ref_name }}-${{ github.sha }}
+ restore-keys: eslint-${{ env.eslint-cache-version }}-${{ matrix.workspace }}-${{ hashFiles('**/pnpm-lock.yaml') }}-
+ - run: pnpm --filter ${{ matrix.workspace }} run eslint --cache --cache-location ${{ env.eslint-cache-path }} --cache-strategy content
typecheck:
needs: [pnpm_install]
diff --git a/.gitignore b/.gitignore
index e33383571553..0f896f4a9832 100644
--- a/.gitignore
+++ b/.gitignore
@@ -44,6 +44,7 @@ compose.yml
/build
built
built-test
+js-built
/data
/.cache-loader
/db
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fe61d698230b..398134436bab 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,7 @@
### Client
- サイズ制限を超過するファイルをアップロードしようとした際にエラーを出すように
+- Enhance: アイコンデコレーション管理画面にプレビューを追加
- Fix: サーバーメトリクスが2つ以上あるとリロード直後の表示がおかしくなる問題を修正
### Server
diff --git a/packages/frontend/src/components/MkChart.vue b/packages/frontend/src/components/MkChart.vue
index 4b2456224991..57d325b11ad3 100644
--- a/packages/frontend/src/components/MkChart.vue
+++ b/packages/frontend/src/components/MkChart.vue
@@ -13,29 +13,8 @@ SPDX-License-Identifier: AGPL-3.0-only
-
+
+
+
+
diff --git a/packages/frontend/src/pages/instance-info.vue b/packages/frontend/src/pages/instance-info.vue
index 4ba428d53630..c69530b34349 100644
--- a/packages/frontend/src/pages/instance-info.vue
+++ b/packages/frontend/src/pages/instance-info.vue
@@ -134,7 +134,7 @@ SPDX-License-Identifier: AGPL-3.0-only