소스 검색

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

Loading…
취소
저장