소스 검색

Fixes period dropdown not updating properly

main
Eric Amodio 1 년 전
부모
커밋
15aad22c65
1개의 변경된 파일7개의 추가작업 그리고 4개의 파일을 삭제
  1. +7
    -4
      src/webviews/apps/plus/timeline/timeline.ts

+ 7
- 4
src/webviews/apps/plus/timeline/timeline.ts 파일 보기

@ -172,10 +172,13 @@ export class TimelineApp extends App {
const $periods = document.getElementById('periods') as HTMLSelectElement;
if ($periods != null) {
const period = this.state?.period;
for (let i = 0, len = $periods.options.length; i < len; ++i) {
if ($periods.options[i].value === period) {
$periods.selectedIndex = i;
break;
const $periodOptions = $periods.getElementsByTagName('vscode-option');
for (const $option of $periodOptions) {
if (period === $option.getAttribute('value')) {
$option.setAttribute('selected', '');
} else {
$option.removeAttribute('selected');
}
}
}

불러오는 중...
취소
저장