public componentDidUpdate()

in src/components/tagsInput/tagsInput.tsx [107:113]


    public componentDidUpdate(prevProps: ITagsInputProps) {
        if (prevProps.tags !== this.props.tags) {
            this.setState({
                tags: this.props.tags,
            });
        }
    }