match the original style
This commit is contained in:
parent
a5275a4f52
commit
bcf924a204
|
|
@ -19,7 +19,7 @@ const ChannelList = ({ channelList, refreshChannelList }: ChannelListProps) => {
|
|||
const viewStyle = userConfig.view_style_channel;
|
||||
|
||||
if (!channelList || channelList.length === 0) {
|
||||
return <p>No channels found...</p>;
|
||||
return <h2>No channels found...</h2>;
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ const PlaylistList = ({ playlistList, setRefresh }: PlaylistListProps) => {
|
|||
const viewStyle = userConfig.view_style_playlist;
|
||||
|
||||
if (!playlistList || playlistList.length === 0) {
|
||||
return <p>No playlists found...</p>;
|
||||
return <h2>No playlists found...</h2>;
|
||||
}
|
||||
|
||||
return (
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ const VideoList = ({
|
|||
refreshVideoList,
|
||||
}: VideoListProps) => {
|
||||
if (!videoList || videoList.length === 0) {
|
||||
return <p>No videos found...</p>;
|
||||
return <h2>No videos found...</h2>;
|
||||
}
|
||||
|
||||
if (viewStyle === ViewStylesEnum.Table) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue