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

merge/lint:fixes

Signed-off-by: Roman <ixrock@gmail.com>
This commit is contained in:
Roman 2021-04-22 12:41:14 +03:00
parent 426cb48966
commit 1dfc9fd50c
2 changed files with 2 additions and 2 deletions

View File

@ -500,7 +500,7 @@ export class Extensions extends React.Component {
<div> <div>
Add new features and functionality via Lens Extensions. Add new features and functionality via Lens Extensions.
Check out documentation to <a href={`${docsUrl}/latest/extensions/usage/`} target="_blank" rel="noreferrer">learn more</a> or see the list of <a Check out documentation to <a href={`${docsUrl}/latest/extensions/usage/`} target="_blank" rel="noreferrer">learn more</a> or see the list of <a
href="https://github.com/lensapp/lens-extensions/blob/main/README.md" target="_blank" rel="noreferrer">available extensions</a>. href="https://github.com/lensapp/lens-extensions/blob/main/README.md" target="_blank" rel="noreferrer">available extensions</a>.
</div> </div>
<div className="install-extension flex column gaps"> <div className="install-extension flex column gaps">

View File

@ -85,7 +85,7 @@ export class ThemeStore extends Singleton {
const theme = await import( const theme = await import(
/* webpackChunkName: "themes/[name]" */ /* webpackChunkName: "themes/[name]" */
`./themes/${themeId}.json` `./themes/${themeId}.json`
); );
existingTheme.author = theme.author; existingTheme.author = theme.author;
existingTheme.colors = theme.colors; existingTheme.colors = theme.colors;