| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -168,7 +168,8 @@ class CSSSource { | |||
| 168 | 168 | if (!this._source && this._file) { | |
| 169 | 169 | this.load(); | |
| 170 | 170 | } | |
| 171 | - if (this._source) { | ||
| 171 | + // [object Object] check guards against empty app.css file | ||
| 172 | + if (this._source && this.source !== "[object Object]") { | ||
| 172 | 173 | this.parseCSSAst(); | |
| 173 | 174 | } | |
| 174 | 175 | } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments