mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Aligning not found state
Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
parent
db8463b055
commit
51231ae2df
@ -22,7 +22,7 @@ export function InstalledExtensions({ extensions, uninstall }: Props) {
|
||||
return <div><Spinner center /></div>;
|
||||
}
|
||||
|
||||
if (extensions.length != 0) {
|
||||
if (extensions.length == 0) {
|
||||
return (
|
||||
<div className="flex column h-full items-center justify-center">
|
||||
<Icon material="extension" className={styles.noItemsIcon}/>
|
||||
@ -123,7 +123,7 @@ export function InstalledExtensions({ extensions, uninstall }: Props) {
|
||||
return (
|
||||
<section>
|
||||
<List
|
||||
title={<h2 className={styles.title}>Installed</h2>}
|
||||
title={<h2 className={styles.title}>Installed extensions</h2>}
|
||||
columns={columns}
|
||||
data={data}
|
||||
items={extensions}
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
.notFound {
|
||||
@apply flex items-center justify-center h-10;
|
||||
@apply flex items-center justify-center h-24;
|
||||
color: var(--textColorDimmed);
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user