remove deprecated metadata field
This commit is contained in:
parent
f95853892b
commit
620ac04db2
1 changed files with 1 additions and 4 deletions
|
@ -9,7 +9,7 @@ import Link from "component/link";
|
||||||
import UriIndicator from "component/uriIndicator";
|
import UriIndicator from "component/uriIndicator";
|
||||||
|
|
||||||
const FormatItem = props => {
|
const FormatItem = props => {
|
||||||
const { contentType, metadata: { author, language, license } } = props;
|
const { contentType, metadata: { language, license } } = props;
|
||||||
|
|
||||||
const mediaType = lbry.getMediaType(contentType);
|
const mediaType = lbry.getMediaType(contentType);
|
||||||
|
|
||||||
|
@ -19,9 +19,6 @@ const FormatItem = props => {
|
||||||
<tr>
|
<tr>
|
||||||
<td>{__("Content-Type")}</td><td>{mediaType}</td>
|
<td>{__("Content-Type")}</td><td>{mediaType}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<td>{__("Author")}</td><td>{author}</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<td>{__("Language")}</td><td>{language}</td>
|
<td>{__("Language")}</td><td>{language}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
Loading…
Reference in a new issue