mirror of
https://github.com/Dispatcharr/Dispatcharr.git
synced 2026-07-30 13:30:05 +00:00
fixing when to render onboarding channel section
This commit is contained in:
parent
4df796ac7f
commit
21c67b999d
1 changed files with 2 additions and 2 deletions
|
|
@ -1210,7 +1210,7 @@ const ChannelsTable = ({}) => {
|
|||
|
||||
{/* Table or ghost empty state inside Paper */}
|
||||
<Box>
|
||||
{initialDataCount === 0 && (
|
||||
{initialDataCount === 0 && data.length === 0 && (
|
||||
<Box
|
||||
style={{
|
||||
paddingTop: 20,
|
||||
|
|
@ -1288,7 +1288,7 @@ const ChannelsTable = ({}) => {
|
|||
)}
|
||||
</Box>
|
||||
|
||||
{initialDataCount > 0 && (
|
||||
{data.length > 0 && (
|
||||
<Box
|
||||
style={{
|
||||
display: 'flex',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue