mirror of
https://github.com/flarum/framework.git
synced 2024-11-23 10:32:44 +08:00
fixed an issue with Post--by-start-user for discussions that contain posts of deleted users
This commit is contained in:
parent
44ac2ec8ee
commit
2e2aa8747e
|
@ -100,22 +100,24 @@ export default class Post extends Component {
|
|||
|
||||
/**
|
||||
* Get the post's classes.
|
||||
*
|
||||
*
|
||||
* @param string classes
|
||||
* @returns {string[]}
|
||||
*/
|
||||
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')
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user