fix: ヒートマップが表示されない

This commit is contained in:
NoriDev 2023-10-04 23:18:24 +09:00
parent a4a41187dd
commit 163c3aeee1
6 changed files with 7 additions and 6 deletions

View file

@ -43,6 +43,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2023xx](CHANGE
- 서브 노트에서 더 보기 버튼을 사용할 수 없음
- 리액션 변경 기능을 사용할 수 없음
- Fix: 노트 상세 페이지의 노트 입력 폼을 누르기 전에 일부 요소가 표시될 수 있음
- Fix: 히트맵이 표시되지 않음
### Server
- Revert: Feat: 이모티콘 중복 체크 (misskey-dev/misskey#11941)

View file

@ -78,7 +78,7 @@ export class EmailService {
a {
text-decoration: none;
color: rgb(255, 188, 220);
color: #ffbcdc;
}
a:hover {
text-decoration: underline;
@ -92,7 +92,7 @@ export class EmailService {
}
main > header {
padding: 32px;
background: rgb(255, 188, 220);
background: #ffbcdc;
}
main > header > img {
max-width: 128px;

View file

@ -119,7 +119,7 @@ export class NodeinfoServerService {
enableEmail: meta.enableEmail,
enableServiceWorker: meta.enableServiceWorker,
proxyAccountName: proxyAccount ? proxyAccount.username : null,
themeColor: meta.themeColor ?? 'rgb(255, 188, 220)',
themeColor: meta.themeColor ?? '#ffbcdc',
},
};
if (version >= 21) {

View file

@ -92,7 +92,7 @@ async function renderChart() {
await nextTick();
const color = defaultStore.state.darkMode ? 'rgb(255, 207, 230)' : 'rgb(255, 188, 220)';
const color = defaultStore.state.darkMode ? '#ffcfe6' : '#ffbcdc';
// 3
const max = values.slice().sort((a, b) => b - a).slice(0, 3).reduce((a, b) => a + b, 0) / 3;

View file

@ -70,7 +70,7 @@ async function renderChart() {
await nextTick();
const color = defaultStore.state.darkMode ? 'rgb(255, 207, 230)' : 'rgb(255, 188, 220)';
const color = defaultStore.state.darkMode ? '#ffcfe6' : '#ffbcdc';
const getYYYYMMDD = (date: Date) => {
const y = date.getFullYear().toString().padStart(2, '0');

View file

@ -82,7 +82,7 @@ async function renderChart() {
await nextTick();
const color = defaultStore.state.darkMode ? 'rgb(255, 207, 230)' : 'rgb(255, 188, 220)';
const color = defaultStore.state.darkMode ? '#ffcfe6' : '#ffbcdc';
// 3
const max = values.slice().sort((a, b) => b - a).slice(0, 3).reduce((a, b) => a + b, 0) / 3;