mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-06 06:48:21 +00:00
fixes: 'no results' not legible (#1983)
This commit is contained in:
parent
a22de0b358
commit
2b81ca56a7
1 changed files with 3 additions and 1 deletions
|
|
@ -51,7 +51,9 @@ const AppList = (props) => {
|
|||
)}
|
||||
{!props.isLoading && props.meta.total_count === 0 && !(props.currentFolder && props.currentFolder.id) && (
|
||||
<div>
|
||||
<span className="d-block text-center text-body pt-5">No Applications found</span>
|
||||
<span className={`d-block text-center text-body pt-5 ${props.darkMode && 'text-white-50'}`}>
|
||||
No Applications found
|
||||
</span>
|
||||
</div>
|
||||
)}
|
||||
{!props.isLoading && props.currentFolder.count === 0 && (
|
||||
|
|
|
|||
Loading…
Reference in a new issue