Skip to content

Commit

Permalink
Merge pull request #477 from junogueira/fix/board-view-empty-group-title
Browse files Browse the repository at this point in the history
  • Loading branch information
transitive-bullshit authored Oct 31, 2024
2 parents f2219b8 + cf65eb7 commit 8ab75e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/react-notion-x/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,7 @@ svg.notion-page-icon {
}

.notion-board-th-empty {
margin-right: 4px;
margin-right: 6px;
position: relative;
top: 2px;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ function Board({ collectionView, collectionData, collection, padding }) {
/>
) : (
<span>
<EmptyIcon className='notion-board-th-empty' /> No
Select
<EmptyIcon className='notion-board-th-empty' />
{schema?.name ? `No ${schema.name}` : 'No Select'}
</span>
)}

Expand Down

0 comments on commit 8ab75e1

Please sign in to comment.