mirror of
https://github.com/flarum/core.git
synced 2025-07-24 02:01:19 +02:00
fixed an issue with Post--by-start-user for discussions that contain posts of deleted users
This commit is contained in:
@@ -107,15 +107,17 @@ export default class Post extends Component {
|
||||
classes(existing) {
|
||||
let classes = (existing || '').split(' ').concat(['Post']);
|
||||
|
||||
const user = this.props.post.user();
|
||||
|
||||
if (this.loading) {
|
||||
classes.push('Post--loading');
|
||||
}
|
||||
|
||||
if (this.props.post.user() === app.session.user) {
|
||||
if (user && user === app.session.user) {
|
||||
classes.push('Post--by-actor');
|
||||
}
|
||||
|
||||
if (app.current.discussion && app.current.discussion.attribute('startUserId') == this.props.post.user().id()) {
|
||||
if (user && app.current.discussion && app.current.discussion.attribute('startUserId') == user.id()) {
|
||||
classes.push('Post--by-start-user')
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user