mirror of
https://github.com/BoostIo/Boostnote
synced 2025-12-13 09:46:22 +00:00
Fix some pointed by lint
This commit is contained in:
@@ -43,7 +43,7 @@ const InfoPanel = ({
|
||||
Note Link
|
||||
</div>
|
||||
<div styleName='group-section-control'>
|
||||
<input value={noteKey} onClick={(e) => { e.target.select()}} />
|
||||
<input value={noteKey} onClick={(e) => { e.target.select() }} />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@@ -233,7 +233,7 @@ class MarkdownNoteDetail extends React.Component {
|
||||
}
|
||||
|
||||
handleInfoButtonClick (e) {
|
||||
const infoPanel= document.querySelector('.infoPanel')
|
||||
const infoPanel = document.querySelector('.infoPanel')
|
||||
infoPanel.style.display = display === 'none' ? 'inline' : 'none'
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user