Skip to content

Commit

Permalink
COM port select box 선택 문제 수정
Browse files Browse the repository at this point in the history
- 동일한 포트목록인 경우, 메인으로 돌아간 후 다시 목록이 뜨지 않던점 수정
  • Loading branch information
extracold1209 committed Apr 29, 2019
1 parent 1ef9f8b commit 3777b4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/renderer/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -456,10 +456,10 @@
`<option title="${port.comName}">${port.comName}</option>`;
});

$('#select_port_box').css('display', 'flex');
$('#select_port_box select').html(portHtml);
this.cachedPortList = JSON.stringify(portList);
}
$('#select_port_box').css('display', 'flex');
},
quit() {
},
Expand Down

0 comments on commit 3777b4e

Please sign in to comment.