fix react error
This commit is contained in:
parent
eefc0dcb67
commit
008e130dce
2 changed files with 11 additions and 7 deletions
|
@ -1026,5 +1026,6 @@
|
||||||
"For video content, use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.": "For video content, use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.",
|
"For video content, use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.": "For video content, use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.",
|
||||||
"Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.": "Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.",
|
"Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.": "Your video may not be the best format. Use MP4s in H264/AAC format and a friendly bitrate (720p) for more reliable streaming.",
|
||||||
"Your video has a bitrate over 6 mbps. We suggest transcoding to provide viewers the best experience.": "Your video has a bitrate over 6 mbps. We suggest transcoding to provide viewers the best experience.",
|
"Your video has a bitrate over 6 mbps. We suggest transcoding to provide viewers the best experience.": "Your video has a bitrate over 6 mbps. We suggest transcoding to provide viewers the best experience.",
|
||||||
"Your video has a bitrate over 5 mbps. We suggest transcoding to provide viewers the best experience.": "Your video has a bitrate over 5 mbps. We suggest transcoding to provide viewers the best experience."
|
"Your video has a bitrate over 5 mbps. We suggest transcoding to provide viewers the best experience.": "Your video has a bitrate over 5 mbps. We suggest transcoding to provide viewers the best experience.",
|
||||||
|
"Almost there": "Almost there"
|
||||||
}
|
}
|
|
@ -116,11 +116,14 @@ function SideNavigation(props: Props) {
|
||||||
...buildLink(PAGES.LIBRARY, __('Library'), ICONS.LIBRARY),
|
...buildLink(PAGES.LIBRARY, __('Library'), ICONS.LIBRARY),
|
||||||
},
|
},
|
||||||
// @endif
|
// @endif
|
||||||
].map(linkProps => (
|
].map(
|
||||||
<li key={linkProps.navigate}>
|
linkProps =>
|
||||||
<Button {...linkProps} className="navigation-link" activeClass="navigation-link--active" />
|
linkProps.navigate && (
|
||||||
</li>
|
<li key={linkProps.navigate}>
|
||||||
))}
|
<Button {...linkProps} className="navigation-link" activeClass="navigation-link--active" />
|
||||||
|
</li>
|
||||||
|
)
|
||||||
|
)}
|
||||||
|
|
||||||
{expanded &&
|
{expanded &&
|
||||||
[
|
[
|
||||||
|
|
Loading…
Add table
Reference in a new issue