Skip to content
Snippets Groups Projects
  1. Dec 13, 2018
  2. Dec 12, 2018
    • ThibG's avatar
      Various fixes to scrollable lists and media gallery (#9501) · 55abff8a
      ThibG authored
      * Always use the scrollable class for the ScrollList component
      
      Fixes #9499 as well as empty timelines' scrollbar “blinking”
      between loading state and empty state.
      
      * Do not display empty message when the list is known to have more elements
      
      Fixes #9500
      
      * Fix LoadMore usage in account media gallery
      
      (Even though that codepath is probably never actually used…)
      
      * Make account media gallery more consistent with account timeline
      
      Fixes #9498
      
      Display “load more” more consistently, add a loading indicator on first load.
      
      * Fix “load more” button when no data has been fetched
      55abff8a
    • ysksn's avatar
      Create Settings::BaseController (#9507) · b048926e
      ysksn authored
      Define `Settings::BaseController#set_body_classes` so that sub classes
      inherit `Settings::BaseController` don't need to define
      `#set_body_classes` agein.
      b048926e
    • Marcin Mikołajczak's avatar
      9983d21d
    • ysksn's avatar
      Remove redundant (#9503) · 83975a23
      ysksn authored
      83975a23
    • ysksn's avatar
      Use find_or_initialize_by (#9504) · 351ed12b
      ysksn authored
      351ed12b
  3. Dec 11, 2018
  4. Dec 10, 2018
  5. Dec 09, 2018
  6. Dec 08, 2018
  7. Dec 07, 2018
  8. Dec 06, 2018
  9. Dec 05, 2018
    • ThibG's avatar
      Attempt fixing deadlocks by moving account stats update outside transaction (#9437) · 1a22eff1
      ThibG authored
      * Use `update_column` instead of `update_attribute` in callback
      
      `update_attribute` would normally cause callbacks to be called.
      Called from a callback, it seems to stop further callbacks from executing.
      
      `update_column` does the same work, but without calling callbacks or
      preventing other callbacks from executing.
      
      * Fix deadlocks by moving account stats update outside transaction
      1a22eff1
Loading