mirror of
https://github.com/voltbonn/profile-picture-generator.git
synced 2024-12-21 23:35:05 +00:00
WHITESPACE indented attributes/properties
This commit is contained in:
parent
093ce07ce7
commit
aaed8c6d6f
1 changed files with 6 additions and 1 deletions
|
@ -68,7 +68,12 @@ function HashtagChooser({ onChange, getString }) {
|
|||
frames.map(frame => {
|
||||
const frame_src_path = frame.src
|
||||
const isChoosen = choosenFrameSRC === frame_src_path
|
||||
return <button key={frame.name} data-src={frame_src_path} className={isChoosen ? 'isInRow choosen' : 'isInRow'} onClick={() => handleImageChoosing(frame)}>
|
||||
return <button
|
||||
key={frame.name}
|
||||
data-src={frame_src_path}
|
||||
className={isChoosen ? 'isInRow choosen' : 'isInRow'}
|
||||
onClick={() => handleImageChoosing(frame)}
|
||||
>
|
||||
{frame.name === '' ? getString('button_no_hashtag') : frame.name}
|
||||
</button>
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue