diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-17 06:37:39 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-17 06:37:39 +0900 |
| commit | 15839a739983c78c13159fcbf95c9ed87b43a105 (patch) | |
| tree | 3ee197aee028c52af7d03be3a02fd9e0d0817bc8 /src/client/theme.ts | |
| parent | Clean up (diff) | |
| download | misskey-15839a739983c78c13159fcbf95c9ed87b43a105.tar.gz misskey-15839a739983c78c13159fcbf95c9ed87b43a105.tar.bz2 misskey-15839a739983c78c13159fcbf95c9ed87b43a105.zip | |
:art:
Diffstat (limited to 'src/client/theme.ts')
| -rw-r--r-- | src/client/theme.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/theme.ts b/src/client/theme.ts index c446528f06..576096cf70 100644 --- a/src/client/theme.ts +++ b/src/client/theme.ts @@ -52,7 +52,7 @@ export function applyTheme(theme: Theme, persist = true) { for (const tag of document.head.children) { if (tag.tagName === 'META' && tag.getAttribute('name') === 'theme-color') { - tag.setAttribute('content', props['accent']); + tag.setAttribute('content', props['html']); break; } } |