1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Add a bit of spacing before Installed extensions title (#7152)

* Add a bit of spacing before Installed extensions title

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

* Update snapshot

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>

---------

Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
This commit is contained in:
Alex Andreev 2023-02-14 18:24:23 +03:00 committed by GitHub
parent ebf6d78870
commit 15ba5da51e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -423,6 +423,9 @@ exports[`extensions - navigation using application menu when navigating to exten
: you can drag and drop a tarball file to this area
</small>
</section>
<div
class="size-md"
/>
<div>
<div
class="Spinner singleColor center"

View File

@ -37,6 +37,7 @@ import installOnDropInjectable from "./install-on-drop.injectable";
import { supportedExtensionFormats } from "./supported-extension-formats";
import extensionInstallationStateStoreInjectable from "../../../extensions/extension-installation-state-store/extension-installation-state-store.injectable";
import type { ExtensionInstallationStateStore } from "../../../extensions/extension-installation-state-store/extension-installation-state-store";
import Gutter from "../gutter/gutter";
interface Dependencies {
userExtensions: IComputedValue<InstalledExtension[]>;
@ -113,6 +114,8 @@ class NonInjectedExtensions extends React.Component<Dependencies> {
installPath={this.installPath}
/>
<Gutter size="md" />
<InstalledExtensions
extensions={userExtensions}
enable={this.props.enableExtension}