Merge pull request #7137 from NativeScript/mdonev/release-to-master-7135

chore: merge release to master (#7135)
This commit is contained in:
Manol Donev
2019-04-12 14:40:07 +03:00
committed by GitHub

View File

@ -168,7 +168,8 @@ class CSSSource {
if (!this._source && this._file) {
this.load();
}
if (this._source) {
// [object Object] check guards against empty app.css file
if (this._source && this.source !== "[object Object]") {
this.parseCSSAst();
}
}