Skip to content
代码片段 群组 项目
该项目从 https://gitlab.com/gitlab-org/gitlab.git 镜像。 拉取镜像更新于
  1. 4月 13, 2024
    • Chad Lavimoniere's avatar
      When localStorage draft exists for comment reply, show it on load · dfbec8b4
      Chad Lavimoniere 创作于
      When a user has a comment draft saved in localstorage, we do not
      indicate that on page load at all; the user can only see their comment
      draft by clicking reply and seeing the draft populated into the markdown
      editor.
      
      This MR changes the noteable_discussion component's behavior such that
      it exposes the markdown editor with the user's comment draft on page
      load if there is a saved draft for the comment in localstorage.
      
      Changelog: fixed
      dfbec8b4
  2. 3月 25, 2024
  3. 8月 15, 2023
    • Frédéric Caplette's avatar
      Lint against VueX imports · 3e60bba2
      Frédéric Caplette 创作于
      We are moving away from VueX in favour of Vue
      and ApolloClient. We want to ling against new
      VueX imports to make sure to warn developers
      not to introduce new stores.
      3e60bba2
  4. 6月 16, 2023
  5. 6月 07, 2023
  6. 6月 06, 2023
    • Hinam Mehra's avatar
      Display errors in UI correctly with creating notes · 5872453d
      Hinam Mehra 创作于
      - When there is a validation error when adding
      a new note or replying to a discussion, display the
      error message on top of the note in question, instead
      of at the top of the viewing window
      - Remove the placeholder note and return context
      to the note-form
      
      Changelog: fixed
      5872453d
  7. 3月 17, 2023
  8. 3月 09, 2023
  9. 12月 16, 2022
  10. 9月 01, 2022
  11. 8月 12, 2022
  12. 6月 23, 2022
  13. 6月 13, 2022
  14. 4月 05, 2022
  15. 11月 20, 2021
  16. 11月 02, 2021
    • Thomas Randolph's avatar
      Update scroll position to synchronize the Jump To Next button · 65e7685f
      Thomas Randolph 创作于
      When you scroll a discussion halfway up the page, the
      Jump To Next Unresolved Discussion button will go to the
      discussion after that one.
      
      When you scroll the page such that a discussion scrolls down
      through the middle of the page and below it, the Jump button
      considers that discussion the "next" in line to be seen, and
      will scroll to it.
      
      Changelog: added
      65e7685f
  17. 10月 07, 2021
  18. 6月 07, 2021
  19. 3月 31, 2021
  20. 3月 03, 2021
    • Eulyeon Ko's avatar
      Remove unused functions from jest specs · 8af3ca9d
      Eulyeon Ko 创作于
      loadJSONFixtures and preloadFixtures aren't used in jest specs.
      - Update eslint config
      - Remove preloadFixtures calls from the jest specs
      - Remove preloadFixtures and loadJSONFixtures from test_setup.js
      8af3ca9d
  21. 2月 18, 2021
    • Mike Greiling's avatar
      Replace styled reply button with textarea · 1ba7df0d
      Mike Greiling 创作于
      In discussion threads there is a "Reply..." button styled to look like
      a textarea which, when clicked, will open up a full GFM discussion
      form with a textarea element. This changes this button into an actual
      textarea to improve accessibility.
      1ba7df0d
  22. 2月 15, 2021
  23. 12月 25, 2020
  24. 12月 24, 2020
  25. 8月 18, 2020
  26. 8月 17, 2020
    • Vitaly Slobodin's avatar
      Fix imports orders in JavaScript · fb22121e
      Vitaly Slobodin 创作于
      We follow this imports order:
      // 1. "external" modules
      import _ from 'lodash';
      import chalk from 'chalk';
      // 2. "internal" and aliased modules
      import foo from 'src/foo';
      // 3. modules from a "parent" directory
      import foo from '../foo';
      import qux from '../../foo/qux';
      // 4. "sibling" modules from the same or a sibling's directory
      import bar from './bar';
      import baz from './bar/baz';
      // 5. "index" of the current directory
      import main from './';
      fb22121e
  27. 5月 08, 2020
  28. 4月 02, 2020
  29. 1月 30, 2020
  30. 1月 10, 2020
    • Illya Klymov's avatar
      Remove { sync: false } · f745fbbd
      Illya Klymov 创作于
      This commit removes { sync: false } accross entire codebase
      This is useless since upgrade to @vue/test-utils 1.0.0.beta-30
      f745fbbd
  31. 12月 30, 2019
  32. 11月 23, 2019
  33. 11月 12, 2019
  34. 9月 12, 2019
  35. 7月 03, 2019
  36. 7月 02, 2019
  37. 6月 26, 2019
加载中