ソースを参照

Fix logout bug

master
Roderic Day 4年前
コミット
7f4821675d
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      apps/streams.js

+ 1
- 1
apps/streams.js ファイルの表示

@@ -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 = {

読み込み中…
キャンセル
保存