1. 24 Sep, 2020 9 commits
  2. 23 Sep, 2020 2 commits
  3. 22 Sep, 2020 6 commits
  4. 21 Sep, 2020 6 commits
    • Lyza Danger Gardner's avatar
      Fix case-sensitivity issue with rendering suggested tags. · 6bd09e71
      Lyza Danger Gardner authored
      The `TagEditor` component formerly did not take casing into account
      in its formatting function for suggested tags. The match should be
      case-insensitive in the formatter, as it is in the service that does
      the filtering of tags.
      
      This is fixed in two ways:
      
      1. Make substring matching in the formatting function case-insensitive.
         Render the substring match according to the suggested tag's casing.
         Fixes this issue specifically.
      2. Provide a fallback in the formatter for when the input text does not
         "seem" to match the suggested `item`. In these cases, just render the
         suggested tag as-is. This will prevent the formatter from spazzing
         out if its notion of matching differs from the tag-service's in
         any future case.
      
      Fixes #2547
      6bd09e71
    • Robert Knight's avatar
      Improve some test descriptions and do some small cleanups · 478c173c
      Robert Knight authored
       - Remove an `Object.assign` in favor of object spread
      
       - Remove an unused `ctx` argument to `emitGuestEvent`
      
       - Rewrite several test descriptions for readability
      
       - Re-order stub initializations in `beforeEach` to be more alphabetical
      478c173c
    • Robert Knight's avatar
      Convert `Guest` tests to JS · bf94d530
      Robert Knight authored
      This is the result of an automated conversion by decaffeinate followed
      by a manual review and clean-up of the result.
      bf94d530
    • Robert Knight's avatar
      Change jQuery `.each()` callback to avoid `this` · a8860c35
      Robert Knight authored
      To avoid confusion with different meanings of `this` between the
      callback and surrounding scope, get the element from callback arguments
      instead.
      a8860c35
    • Robert Knight's avatar
      Remove unnecessary fallback value for `Object.keys` call · 048a6c7b
      Robert Knight authored
      The `options` field is always initialized to an object, so the `|| {}`
      is not necessary.
      048a6c7b
    • Robert Knight's avatar
      Convert Guest class to JS · 1f7174f6
      Robert Knight authored
      1f7174f6
  5. 18 Sep, 2020 1 commit
  6. 17 Sep, 2020 6 commits
  7. 16 Sep, 2020 3 commits
  8. 15 Sep, 2020 7 commits