1. 28 3月, 2019 4 次提交
  2. 27 3月, 2019 1 次提交
  3. 26 3月, 2019 2 次提交
  4. 25 3月, 2019 2 次提交
  5. 24 3月, 2019 1 次提交
  6. 22 3月, 2019 1 次提交
  7. 21 3月, 2019 3 次提交
  8. 20 3月, 2019 2 次提交
  9. 19 3月, 2019 3 次提交
  10. 14 3月, 2019 1 次提交
  11. 11 3月, 2019 3 次提交
  12. 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
  13. 08 3月, 2019 6 次提交
  14. 06 3月, 2019 1 次提交
  15. 04 3月, 2019 3 次提交
  16. 02 3月, 2019 2 次提交
  17. 28 2月, 2019 4 次提交