Explorar el Código

Fix “X new items” not showing up for slow mode on empty timelines (#12875)

master^2
ThibG hace 4 años
committed by Eugen Rochko
padre
commit
2d5addde03
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      app/javascript/mastodon/components/scrollable_list.js

+ 1
- 1
app/javascript/mastodon/components/scrollable_list.js Ver fichero

@@ -296,7 +296,7 @@ export default class ScrollableList extends PureComponent {
</div>
</div>
);
} else if (isLoading || childrenCount > 0 || hasMore || !emptyMessage) {
} else if (isLoading || childrenCount > 0 || numPending > 0 || hasMore || !emptyMessage) {
scrollableArea = (
<div className={classNames('scrollable', { fullscreen })} ref={this.setRef} onMouseMove={this.handleMouseMove}>
<div role='feed' className='item-list'>


Cargando…
Cancelar
Guardar