Bug 1638360 Comment 11 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

To fix this bug, this condition:

```
      if (!trigger._placesNode) {
        return;
      }
```

should be changed to

```
      if (!trigger._placesNode?.bookmarkGuid) {
        return;
      }
```

Back to Bug 1638360 Comment 11