fixes: 'no results' not legible (#1983)

This commit is contained in:
Arpit 2022-01-28 07:35:35 +05:30 committed by GitHub
parent a22de0b358
commit 2b81ca56a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 && (