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

View File

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