summaryrefslogtreecommitdiff
path: root/packages/frontend/src/utility/theme-editor.ts
diff options
context:
space:
mode:
authormisskey-release-bot[bot] <157398866+misskey-release-bot[bot]@users.noreply.github.com>2025-06-16 02:33:18 +0000
committerGitHub <noreply@github.com>2025-06-16 02:33:18 +0000
commit830e2f0a5b5bada00bfbe036ef6e7ee8d84b83fd (patch)
treeb9ac1c4efb202a62fe34608fb3f42fd73297774b /packages/frontend/src/utility/theme-editor.ts
parentMerge pull request #16134 from misskey-dev/develop (diff)
parentRelease: 2025.6.1 (diff)
downloadmisskey-830e2f0a5b5bada00bfbe036ef6e7ee8d84b83fd.tar.gz
misskey-830e2f0a5b5bada00bfbe036ef6e7ee8d84b83fd.tar.bz2
misskey-830e2f0a5b5bada00bfbe036ef6e7ee8d84b83fd.zip
Merge pull request #16152 from misskey-dev/develop
Release: 2025.6.1
Diffstat (limited to 'packages/frontend/src/utility/theme-editor.ts')
-rw-r--r--packages/frontend/src/utility/theme-editor.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/utility/theme-editor.ts b/packages/frontend/src/utility/theme-editor.ts
index ea07e5f2ff..74175703c3 100644
--- a/packages/frontend/src/utility/theme-editor.ts
+++ b/packages/frontend/src/utility/theme-editor.ts
@@ -3,7 +3,7 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
-import { v4 as uuid } from 'uuid';
+import { genId } from '@/utility/id.js';
import type { Theme } from '@/theme.js';
import { themeProps } from '@/theme.js';
@@ -66,7 +66,7 @@ export const convertToMisskeyTheme = (vm: ThemeViewModel, name: string, desc: st
}
return {
- id: uuid(),
+ id: genId(),
name, desc, author, props, base,
};
};