1. 01 4月, 2019 2 次提交
  2. 28 3月, 2019 4 次提交
  3. 27 3月, 2019 1 次提交
  4. 26 3月, 2019 2 次提交
  5. 25 3月, 2019 2 次提交
  6. 24 3月, 2019 1 次提交
  7. 22 3月, 2019 1 次提交
  8. 21 3月, 2019 3 次提交
  9. 20 3月, 2019 2 次提交
  10. 19 3月, 2019 3 次提交
  11. 14 3月, 2019 1 次提交
  12. 11 3月, 2019 3 次提交
  13. 09 3月, 2019 1 次提交
    • W
      Correct small JS bug · dd13c42d
      Wadeck Follonier 提交于
      Context: 
      The "Manage Legacy API Token usage" page, used for migrating the legacy API Token.
      
      Problem: 
      If you click on a line, the checkbox is checked and the line is highlighted. But if you click on the checkbox, the behavior should be the same. This is not the case for all the lines, except the last one.
      
      Root cause:
      In the code, I used a `var` inside a loop. Due to the JS behavior, the `var` are not scoped to their "block", but to their "function block". That results in the `onCheckChanged(checkBox)`, the checkBox change it's value, due to the closure, that keep the reference to a variable that is changed.
      
      Solution:
      Either using `let` instead of `var` or using the `this` that corresponds to the checkbox in this case.
      dd13c42d
  14. 08 3月, 2019 6 次提交
  15. 06 3月, 2019 1 次提交
  16. 04 3月, 2019 3 次提交
  17. 02 3月, 2019 2 次提交
  18. 28 2月, 2019 2 次提交
    • D
      Merge pull request #3917 from Wadeck/CORRECT_LEGACY_API_TOKEN_MONITOR_LOG · dcf354ce
      Daniel Beck 提交于
      Correct the Logger name for Legacy API Token monitor
      dcf354ce
    • J
      spelling: dependent (#3821) · 8825451f
      Josh Soref 提交于
      * spelling: dependent
      
      Writers following British writing convention often confuse dependent and dependant. Those following US writing convention have an easier time with these words because Americans do not use dependant.
      
      A dependant is a person who is dependent on someone else. (For example, a child is dependent on its parents. Therefore, a child is a dependant of its parents.)
      
      Jenkins does not deal with people, thus the UK rule which is confusing does not apply.
      
      * Add deprecated shims
      8825451f