Tweaks to history parameters

This commit is contained in:
Qstick
2021-04-20 20:58:10 -04:00
parent e5268e8b84
commit 4b1fbbc98a
2 changed files with 7 additions and 6 deletions

View File

@@ -139,7 +139,7 @@ class HistoryRow extends Component {
{
data.imdbId ?
<HistoryRowParameter
title='IMDb Id'
title='IMDb'
value={data.imdbId}
/> :
null
@@ -148,7 +148,7 @@ class HistoryRow extends Component {
{
data.tmdbId ?
<HistoryRowParameter
title='TMDb Id'
title='TMDb'
value={data.tmdbId}
/> :
null
@@ -157,7 +157,7 @@ class HistoryRow extends Component {
{
data.tvdbId ?
<HistoryRowParameter
title='TVDb Id'
title='TVDb'
value={data.tvdbId}
/> :
null
@@ -166,7 +166,7 @@ class HistoryRow extends Component {
{
data.traktId ?
<HistoryRowParameter
title='Trakt Id'
title='Trakt'
value={data.traktId}
/> :
null
@@ -175,7 +175,7 @@ class HistoryRow extends Component {
{
data.rId ?
<HistoryRowParameter
title='Rage Id'
title='TvRage'
value={data.rId}
/> :
null
@@ -184,7 +184,7 @@ class HistoryRow extends Component {
{
data.tvMazeId ?
<HistoryRowParameter
title='TvMaze Id'
title='TvMaze'
value={data.tvMazeId}
/> :
null

View File

@@ -18,4 +18,5 @@
padding: 0 4px;
background-color: $white;
color: $defaultColor;
white-space: nowrap;
}