aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/Player/components/Video.js4
-rw-r--r--apps/Player/styles/_player.scss2
-rw-r--r--apps/Radio/components/List.js2
3 files changed, 4 insertions, 4 deletions
diff --git a/apps/Player/components/Video.js b/apps/Player/components/Video.js
index 161191a..859f364 100644
--- a/apps/Player/components/Video.js
+++ b/apps/Player/components/Video.js
@@ -99,7 +99,7 @@ const Video = ({ playlist, current, setCurrent, audioOnly = false, setDetails })
key={data.id}
controls
playsInline
- webkit-playsInline
+ // webkit-playsInline
autoPlay
>
{
@@ -113,7 +113,7 @@ const Video = ({ playlist, current, setCurrent, audioOnly = false, setDetails })
<>
<div />
<span style={{ backgroundImage: `url(${data.thumbnail})` }} />
- <Image src='/phono.png' height='160' width='90' />
+ <Image src='/phono.png' height='160' width='90' alt='phono' />
</>
)}
</>
diff --git a/apps/Player/styles/_player.scss b/apps/Player/styles/_player.scss
index 4604e4c..861e7fa 100644
--- a/apps/Player/styles/_player.scss
+++ b/apps/Player/styles/_player.scss
@@ -85,7 +85,7 @@
border-radius: .5em;
}
- & > span:nth-child(4) {
+ & > img:nth-child(4) {
transform-origin: 70% 22%;
position: absolute!important;
top: 45%;
diff --git a/apps/Radio/components/List.js b/apps/Radio/components/List.js
index 6f24df6..650a247 100644
--- a/apps/Radio/components/List.js
+++ b/apps/Radio/components/List.js
@@ -37,7 +37,7 @@ const List = ({ results, enqueue }) => {
<div>
<span>{locations.join(', ')}</span>
<div>
- {genres.map(g => <span>{g}</span>)}
+ {genres.map(g => <span key={g}>{g}</span>)}
</div>
</div>
</div>