1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-23 22:56:53 +09:00

fix(frontend): 투표 기한을 기간 지정으로 설정한 경우 투표가 즉시 종료될 수 있음 (kokonect-link/cherrypick#523)

This commit is contained in:
NoriDev 2024-10-29 17:38:07 +09:00
parent b15e01d44c
commit 8e3c1f7f58
2 changed files with 10 additions and 10 deletions

View File

@ -73,6 +73,7 @@ Misskey의 전체 변경 사항을 확인하려면, [CHANGELOG.md#2024xx](CHANGE
- Fix: 제어판에서 문의처 URL이 설정되지 않았을 때 표시되는 경고의 바로가기가 잘못 설정되어 있음
- Fix: 캡션이 설정된 이미지 위에 마우스 커서를 올려도 캡션이 표시되지 않음 (kokonect-link/cherrypick#514)
- Fix: 코드 편집기의 커서 위치가 올바르게 표시되지 않을 수 있음 (kokonect-link/cherrypick#520)
- Fix: 투표 기한을 `기간 지정`으로 설정한 경우 투표가 즉시 종료될 수 있음 (kokonect-link/cherrypick#523)
### Server
- Enhance: 노트 편집 제한 완화

View File

@ -120,16 +120,15 @@ function get(): PollEditorModelValue {
const calcAfter = () => {
let base = parseInt(after.value.toString());
switch (unit.value) {
case 'day':
return base *= 24;
case 'hour':
return base *= 60;
case 'minute':
return base *= 60;
case 'second':
return base *= 1000;
default:
return null;
// @ts-expect-error fallthrough
case 'day': base *= 24;
// @ts-expect-error fallthrough
case 'hour': base *= 60;
// @ts-expect-error fallthrough
case 'minute': base *= 60;
// eslint-disable-next-line no-fallthrough
case 'second': return base *= 1000;
default: return null;
}
};