This project is mirrored from https://gitee.com/NQL886/lens.git.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
- 29 Jan, 2022 1 commit
-
-
Sebastian Malton authored
* Upgrade to eslint latest Signed-off-by:
Sebastian Malton <sebastian@malton.name> * Fix OOM error Signed-off-by:
Sebastian Malton <sebastian@malton.name> * resolve PR comments Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
- 19 Jan, 2022 1 commit
-
-
Jim Ehrismann authored
* converting app-preferences to use di Signed-off-by:
Jim Ehrismann <jehrismann@mirantis.com> * address review comments and fix lint Signed-off-by:
Jim Ehrismann <jehrismann@mirantis.com> * use compact license header Signed-off-by:
Jim Ehrismann <jehrismann@mirantis.com>
-
- 18 Jan, 2022 1 commit
-
-
Janne Savolainen authored
Signed-off-by:
Janne Savolainen <janne.savolainen@live.fi>
-
- 07 Jan, 2022 1 commit
-
-
Sebastian Malton authored
-
- 05 Jan, 2022 1 commit
-
-
Sebastian Malton authored
-
- 15 Dec, 2021 1 commit
-
-
Sebastian Malton authored
Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
- 02 Nov, 2021 1 commit
-
-
Sebastian Malton authored
Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
- 01 Nov, 2021 4 commits
-
-
Sebastian Malton authored
-
Sebastian Malton authored
-
Sebastian Malton authored
-
Sebastian Malton authored
-
- 19 Aug, 2021 1 commit
-
-
Sebastian Malton authored
Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
- 16 Aug, 2021 1 commit
-
-
Alex Andreev authored
-
- 23 Jun, 2021 1 commit
-
-
dependabot[bot] authored
* Bump eslint-plugin-react from 7.21.5 to 7.24.0 Bumps [eslint-plugin-react](https://github.com/yannickcr/eslint-plugin-react) from 7.21.5 to 7.24.0. - [Release notes](https://github.com/yannickcr/eslint-plugin-react/releases) - [Changelog](https://github.com/yannickcr/eslint-plugin-react/blob/master/CHANGELOG.md) - [Commits](https://github.com/yannickcr/eslint-plugin-react/compare/v7.21.5...v7.24.0 ) --- updated-dependencies: - dependency-name: eslint-plugin-react dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by:
dependabot[bot] <support@github.com> * Disable react/prop-types for .ts(x)? files Signed-off-by:
Sebastian Malton <sebastian@malton.name> Co-authored-by:
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by:
Sebastian Malton <sebastian@malton.name>
-
- 20 May, 2021 1 commit
-
-
Alex Andreev authored
-
- 17 May, 2021 1 commit
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
- 21 Apr, 2021 1 commit
-
-
Sebastian Malton authored
- Add distinction between `getInstance` and `getInstanceOrCreate` since it is not always possible to create an instance (since you might not know the correct arguments) - Remove all the `export const *Store = *Store.getInstance<*Store>();` calls as it defeats the purpose of `Singleton`. Plus with the typing changes the appropriate `*Store.getInstance()` is "short enough". - Special case the two extension export facades to not need to use `getInstanceOrCreate`. Plus since they are just facades it is always possible to create them. - Move some other types to be also `Singleton`'s: ExtensionLoader, ExtensionDiscovery, ThemeStore, LocalizationStore, ... - Fixed dev-run always using the same port with electron inspect - Update Store documentation with new recommendations about creating instances of singletons - Fix all unit tests to create their dependent singletons Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
- 21 Jan, 2021 1 commit
-
-
Sebastian Malton authored
Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
- 02 Dec, 2020 2 commits
-
-
Sebastian Malton authored
Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
Panu Horsmalahti authored
Signed-off-by:
Panu Horsmalahti <phorsmalahti@mirantis.com>
-
- 30 Nov, 2020 1 commit
-
-
Panu Horsmalahti authored
Signed-off-by:
Panu Horsmalahti <phorsmalahti@mirantis.com>
-
- 27 Nov, 2020 1 commit
-
-
Sebastian Malton authored
* add no-unused-vars and no-unused-imports * added quotes: double, and remove ignore pattern * move itif and describeif into utils Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
- 24 Nov, 2020 1 commit
-
-
Panu Horsmalahti authored
Signed-off-by:
Panu Horsmalahti <phorsmalahti@mirantis.com>
-
- 23 Nov, 2020 1 commit
-
-
Sebastian Malton authored
Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
- 19 Nov, 2020 3 commits
-
-
Sebastian Malton authored
Signed-off-by:
Sebastian Malton <sebastian@malton.name>
-
Panu Horsmalahti authored
Signed-off-by:
Panu Horsmalahti <phorsmalahti@mirantis.com>
-
Panu Horsmalahti authored
Signed-off-by:
Panu Horsmalahti <phorsmalahti@mirantis.com>
-
- 16 Nov, 2020 1 commit
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
- 03 Nov, 2020 1 commit
-
-
chh authored
* Add @testing-library/jest-dom and @testing-library/react for writing test cases * Make eslint check __mocks__/*.ts files * Mock electron.ipcRenderer.on to prevent errors in React compoment test cases * Mock <Trans /> from @lingui/macro as a component simplely returns children components * Use optional chaining operator (?.) to avoid TypeError: Cannot read property 'replicas' of undefined * Add jest-fetch-mock for mocking global.fetch, activate for all test cases in jest.setup.ts * Add basic tests for <DeploymentScaleDialog /> to ensure it initialises/renders without errors * Add +/- button for changing desired replicas, and its test cases * Adjust the styles of +/- buttons container to make sure it aligns with the slider * Refactor after rebase from master * Use var defined in vars.scss * Add flex align-center to slider-container and remove margin-top: -4px * Use <Icon /> to replace <i/> * Add flex gaps to plus-minus-container Signed-off-by:
Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com>
-
- 27 Oct, 2020 1 commit
-
-
Lauri Nevala authored
Signed-off-by:
Lauri Nevala <lauri.nevala@gmail.com>
-
- 22 Oct, 2020 1 commit
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
- 19 Oct, 2020 1 commit
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
- 09 Sep, 2020 1 commit
-
-
Roman authored
Signed-off-by:
Roman <ixrock@gmail.com> Co-authored-by:
Alex Andreev <alex.andreev.email@gmail.com>
-
- 20 Aug, 2020 1 commit
-
-
Roman authored
Signed-off-by:
Roman <ixrock@gmail.com> Co-authored-by:
Sebastian Malton <sebastian@malton.name> Co-authored-by:
Sebastian Malton <smalton@mirantis.com> Co-authored-by:
Lauri Nevala <lauri.nevala@gmail.com> Co-authored-by:
Alex Andreev <alex.andreev.email@gmail.com>
-
- 30 Jun, 2020 1 commit
-
-
Roman authored
Signed-off-by:
Roman <ixrock@gmail.com>
-
- 26 Jun, 2020 1 commit
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
- 06 Apr, 2020 1 commit
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-
- 15 Mar, 2020 1 commit
-
-
Jari Kolehmainen authored
Signed-off-by:
Jari Kolehmainen <jari.kolehmainen@gmail.com>
-