Procházet zdrojové kódy

Fix logout bug

master
Roderic Day před 4 roky
rodič
revize
7f4821675d
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      apps/streams.js

+ 1
- 1
apps/streams.js Zobrazit soubor

@@ -195,7 +195,7 @@ const StreamContainer = {
const dims = [
Math.floor((1 + Math.sqrt(4 * State.online.length - 3)) / 2),
Math.ceil(Math.sqrt(State.online.length)),
].map(n => Array(n).fill('1fr').join(' '))
].map(n => Array(n || 1).fill('1fr').join(' '))

if(innerHeight > innerWidth) dims.reverse()
const style = {

Načítá se…
Zrušit
Uložit