Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 Pull mirroring failed .
上次成功更新
  1. 8月 20, 2022
  2. 8月 16, 2022
  3. 8月 09, 2022
  4. 7月 21, 2022
  5. 7月 13, 2022
    • Mark Florian's avatar
      Prefer $scopedSlots to $slots · ea89173c
      Mark Florian 创作于
      This enables the @gitlab/vue-prefer-dollar-scopedslots rule, fixes the
      simplest cases, and ignores the rest.
      
      The simplest type of violation is in renderless components which just
      render their default slots. These are fully migrated.
      
      The other types are more subtle, and will need to be migrated separately
      later.
      
      The main subtlety is that these two expressions aren't equivalent:
      
          Boolean(this.$slots.foo)
      
          Boolean(this.$scopedSlots.foo)
      
      The former evaluates to `false` if either the `foo` slot isn't provided,
      or if the provided `foo` slot has no content.
      
      The latter only evaluates to `false` if the `foo` slot is not provided.
      
      The simplest way to make these equivalent would be to call the slot
      function in the second case:
      
          Boolean(this.$scopedSlots.foo())
      
      But, depending on where this code lives, it may be called too often, or
      worse, have side effects.
      
      The best way to migrate each of these will need to be worked out
      case-by-case.
      
      Part of https://gitlab.com/groups/gitlab-org/-/epics/8367.
      ea89173c
  6. 7月 01, 2022
  7. 6月 17, 2022
  8. 6月 16, 2022
  9. 6月 11, 2022
  10. 6月 10, 2022
  11. 6月 09, 2022
  12. 5月 18, 2022
  13. 5月 12, 2022
  14. 5月 03, 2022
    • Paul Slaughter's avatar
      Update eslint to error with vue-no-new-non-primitive rule · 2ddb057d
      Paul Slaughter 创作于
      - We choose to allow this for some props like "class", "style", and
        VueRouter's "to". Also v-bind which expects an object and is
        matched by `^$`.
      - There's some trivial fixes possible, but to keep this review trivial
        we opt for just adding the eslint-disable and eslint-enable for
        existing violations
      2ddb057d
  15. 4月 26, 2022
  16. 4月 22, 2022
    • Vitaly Slobodin's avatar
      Revert "Merge branch... · 9ac5039c
      Vitaly Slobodin 创作于
      Revert "Merge branch '343999-fix-codebase-to-ensure-the-uniqueness-of-graphql-fragment-names' into 'master'"
      
      This reverts merge request !85383
      9ac5039c
  17. 4月 21, 2022
  18. 3月 30, 2022
  19. 2月 21, 2022
  20. 1月 31, 2022
  21. 1月 27, 2022
  22. 12月 29, 2021
  23. 12月 02, 2021
  24. 11月 30, 2021
  25. 11月 26, 2021
  26. 11月 16, 2021
  27. 11月 15, 2021
  28. 11月 08, 2021
  29. 10月 04, 2021
  30. 9月 29, 2021
    • Enrique Alcantara's avatar
      Set up MirajeJS in Storybook · 9800a90a
      Enrique Alcantara 创作于
      Allow using MirajeJS to mock API requests
      in Storybook. Improves the yarn storybook:start
      command to prompt the user about generating
      the fixtures needed by MirajeJS.
      9800a90a
  31. 8月 26, 2021
  32. 8月 17, 2021
  33. 6月 28, 2021
  34. 6月 25, 2021
    • Natalia Tepluhina's avatar
      Updates slots syntax in DynamicScroller · f9ac9550
      Natalia Tepluhina 创作于
      Fixed contributors slot syntax
      
      Fixed slot syntax in ci cd analytics
      
      Fixed slot scope in charts and discussion
      
      Fixed slot syntax in paginated list spec
      
      Fixed slot syntax in resizeable chart spec
      
      Fixed slot syntax in note and issuable form
      
      Fixed members and milestones slot syntax
      
      Fixed slots in discussion-notes
      
      Fixes slot syntax in time series
      
      Noteables slots fixes
      
      Terraform slots syntax fixed
      
      Fixed time series
      
      Fixed slots in analytics
      
      Added modal stub
      
      Fixed rules slot
      
      Fixed burnup and burndown chart
      
      Fixed cluster agents slots
      
      Added eslint config
      
      Fixed related items tree
      
      Fixed slots in grouped metrics
      
      Fixed slots in unit tests
      
      Fixed ready to merge spec
      
      Fixed ci_cd_anaytics spec
      
      Fixed terraform list spec
      
      Added stubbed GlTab to cluster agent spec
      
      Stubbed NoteableNote in specs
      
      Stubbed GlModal in dashboard actions test
      
      Fixed issuable form spec
      
      Fixed discussion notes spec
      
      Fixed time series spec
      
      Fixed fork_form spec
      
      Updated snapshot for analytics
      
      Fixed commit edit spec
      f9ac9550
  35. 6月 18, 2021
  36. 6月 12, 2021
加载中