Skip to content

Commit

Permalink
fix(frontend): 투표 기한을 기간 지정으로 설정한 경우 투표가 즉시 종료될 수 있음 (#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 29, 2024
1 parent b15e01d commit 8e3c1f7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
1 change: 1 addition & 0 deletions CHANGELOG_CHERRYPICK.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: 노트 편집 제한 완화
Expand Down
19 changes: 9 additions & 10 deletions packages/frontend/src/components/MkPollEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
};

Expand Down

0 comments on commit 8e3c1f7

Please sign in to comment.