This project is mirrored from https://gitee.com/mirrors_kinvolk/headlamp.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
  1. 21 Mar, 2022 1 commit
    • Joaquim Rocha's avatar
      frontend: Do not use objects for storing plugins functions · cfc6d9d2
      Joaquim Rocha authored
      Throughout the Redux code, we were using objects to store a map of
      name -> something, but keys' order is not kept in objects, so we could
      not predict which actions were being called after others.
      
      This patch replaces that use with a Map subclass, so we can still use
      it very similarly to what we used to, but now we guarantee that the
      values can be used in insertion order.
      
      As a side-effect, the serialization of a Map is more predictable than
      that of an object (the Map is always {} by default), so we have a more
      predictable use of the data within Redux (this comment has to do with
      the fact that we shouldn't use unserializable data in Redux, but that
      should be for cases where one's thinking of storing/persisting Redux's
      values, which is not the case for this particular UI data).
      cfc6d9d2
  2. 14 Mar, 2022 5 commits
  3. 11 Mar, 2022 2 commits
  4. 07 Mar, 2022 2 commits
  5. 04 Mar, 2022 1 commit
  6. 02 Mar, 2022 2 commits
  7. 23 Feb, 2022 3 commits
  8. 21 Feb, 2022 4 commits
  9. 18 Feb, 2022 20 commits