Reduce store.results update noise.

This commit is contained in:
Jeff King 2019-03-21 12:55:24 -07:00
Родитель 74af44aa6d
Коммит 85f460df64
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -19,7 +19,9 @@ import {ResultsList} from './ResultsList.tsx'
UNSAFE_componentWillReceiveProps(nextProps) {
this.store.needSyncSel = true
this.store.prefix = nextProps.prefix
;(async () => this.store.results = nextProps.sarif && await parse(nextProps.sarif))()
if (this.props.sarif !== nextProps.sarif) {
;(async () => this.store.results = await parse(nextProps.sarif))()
}
return null
}
render() {