# האם מנהלים כבר לא יכולים לראות מי מחק פוסט?

**URL:** https://meta.discourse.org/t/can-admins-no-longer-see-who-deleted-a-post/370551
**Category:** Bug
**Tags:** fixed
**Created:** [17 ביוני,‏ 2025,‏ 4:14pm UTC](https://meta.discourse.org/t/can-admins-no-longer-see-who-deleted-a-post/370551 "2025-06-17T16:14:08Z")
**Posts on this page:** 1
**Showing post:** 3

<div class="post-metadata">

### Author: ![Moin](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/moin/32/554653_2.png) [@Moin](https://meta.discourse.org/u/Moin)
#### Post date: [23 ביוני,‏ 2025,‏ 9:05pm UTC](https://meta.discourse.org/t/can-admins-no-longer-see-who-deleted-a-post/370551/3 "2025-06-23T21:05:33Z")

</div>

I don’t think it was an intentional change. The code is still there. I think something broke when the post widgets were updated to Glimmer components.

> <https://github.com/discourse/discourse/blob/38cf7cdbeae830cd9263514db246fc2748e6016b/app/assets/javascripts/discourse/app/components/post/actions-summary.gjs#L10>

When I change this to

```hbs
{{#if @post.deleted_at}}

```

and also edit line 14

```hbs
{{formatDate @post.deleted_at format="tiny"}}

```

I am able to restore most of it.

 ![image showing a trash can icon and a time below a deleted post](https://global.discourse-cdn.com/meta/original/4X/1/2/d/12d8b528ee0318f183596c4e5ff53ba6cce4f6d8.png)

But I wasn’t able to make the avatar work. Based on

> <https://github.com/discourse/discourse/blob/38cf7cdbeae830cd9263514db246fc2748e6016b/app/assets/javascripts/discourse/app/models/post.js#L176-L177>

I thought it would be

```hbs
<UserAvatar @size="tiny" @user={{@post.deleted_by}} />

```

but that didn’t work.

---

_[View the full topic](https://meta.discourse.org/t/can-admins-no-longer-see-who-deleted-a-post/370551)._
