summaryrefslogtreecommitdiff
path: root/app/client/common
diff options
context:
space:
mode:
Diffstat (limited to 'app/client/common')
-rw-r--r--app/client/common/audioPlayer/audioPlayer.component.js2
-rw-r--r--app/client/common/loading.component.js5
2 files changed, 4 insertions, 3 deletions
diff --git a/app/client/common/audioPlayer/audioPlayer.component.js b/app/client/common/audioPlayer/audioPlayer.component.js
index 481a685..05c743b 100644
--- a/app/client/common/audioPlayer/audioPlayer.component.js
+++ b/app/client/common/audioPlayer/audioPlayer.component.js
@@ -24,7 +24,7 @@ class AudioPlayer extends Component {
<button
onClick={this.handleClick}
>
- {audioPlayer.playing ? '>' : 'pause'}
+ {audioPlayer.playing ? '▶' : '~'}
</button>
</div>
)
diff --git a/app/client/common/loading.component.js b/app/client/common/loading.component.js
index f8033db..290c7a6 100644
--- a/app/client/common/loading.component.js
+++ b/app/client/common/loading.component.js
@@ -5,8 +5,9 @@ import Progress from './progress.component'
export default function Loading({progress}) {
return (
<div className='loading'>
- Loading<br/>
- <Progress progress={progress} />
+ Loading
+ <br/>
+ {progress && <Progress progress={progress}/>}
</div>
)
}