1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Clipper: Fixes to get it working in Firefox

This commit is contained in:
Laurent Cozic 2018-05-26 16:28:55 +01:00
parent e2bfb74895
commit ef57ee803f
2 changed files with 3 additions and 1 deletions

View File

@ -131,6 +131,8 @@
.App .StatusBar .Led {
display: flex;
flex: 0;
width: 8px;
height: 8px;
}
.App .StatusBar .ServerStatus {

View File

@ -182,7 +182,7 @@ class AppComponent extends Component {
return (
<div className="Folders">
<label>In notebook: </label>
<select defaultValue={this.props.selectedFolderId} onChange={this.folderSelect_change}>
<select value={this.props.selectedFolderId} onChange={this.folderSelect_change}>
{ optionComps }
</select>
</div>