1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-10 09:02:50 +00:00

client/server - update reply

This commit is contained in:
2018-01-17 22:50:22 -06:00
parent 04cfb2c916
commit 857df18cbf
6 changed files with 64 additions and 24 deletions

View File

@@ -6,8 +6,8 @@ import { ThreadService } from '../../services';
import { Editor, ForumNav, LoginButton, ScrollToTop } from '../../components';
import { ThreadModel } from '../../model';
import { UserStore } from '../../stores/user-store';
import './forum.scss';
import { Oauth } from '../../util';
import './forum.scss';
const stickyImage = require('../../assets/sticky.gif');
@@ -102,7 +102,7 @@ export class Forum extends React.Component<Props, State> {
renderCell(content: JSX.Element | string, style: any, center?: boolean, header?: boolean) {
let classNames: string = '';
classNames += center ? ' forum-cell--center': '';
classNames += center ? ' forum-cell--center' : '';
classNames += header ? ' forum-cell--header' : ' forum-cell--body';
return <div className={`forum-cell flex-1 ${classNames}`} style={style}>{content}</div>;
}