Skip to content

Conversation

crisbeto
Copy link
Member

@crisbeto crisbeto commented Dec 9, 2017

Fixes a potential server-side rendering error when the AriaDescriber is being cleaned up.

Fixes #8901.

Fixes a potential server-side rendering error when the `AriaDescriber` is being cleaned up.

Fixes angular#8901.
@googlebot googlebot added the cla: yes PR author has agreed to Google's Contributor License Agreement label Dec 9, 2017
private _deleteMessagesContainer() {
this._document.body.removeChild(messagesContainer!);
messagesContainer = null;
if (messagesContainer && messagesContainer.parentNode) {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    if (messagesContainer && messagesContainer.parentNode) {
      messagesContainer.parentNode.removeChild(messagesContainer);
      messagesContainer = null;
    }

if messagesContainer.parentNode is not defined and messagesContainer is not null object,
messagesContainer cannot be null.

    if (messagesContainer) {
      if (messagesContainer.parentNode) {
         messagesContainer.parentNode.removeChild(messagesContainer);
      }
      messagesContainer = null;
    }

Copy link
Member

@jelbourn jelbourn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@jelbourn jelbourn added pr: lgtm action: merge The PR is ready for merge by the caretaker and removed pr: needs review labels Dec 12, 2017
@andrewseguin andrewseguin added the target: patch This PR is targeted for the next patch release label Dec 13, 2017
@andrewseguin andrewseguin merged commit 8a3b19e into angular:master Dec 13, 2017
andrewseguin pushed a commit that referenced this pull request Dec 19, 2017
Fixes a potential server-side rendering error when the `AriaDescriber` is being cleaned up.

Fixes #8901.
@angular-automatic-lock-bot
Copy link

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Sep 7, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
action: merge The PR is ready for merge by the caretaker cla: yes PR author has agreed to Google's Contributor License Agreement target: patch This PR is targeted for the next patch release
Projects
None yet
Development

Successfully merging this pull request may close these issues.

AriaDescriber.ngOnDestory() make SSR 500 error.
5 participants