comparison src/layout/ViewConfig.ts @ 110:3cdbbd913f1d

table displays now just barely
author drewp@bigasterisk.com
date Fri, 18 Mar 2022 23:41:24 -0700
parents 2468f2227d22
children 2e8fa3fec0c8
comparison
equal deleted inserted replaced
109:cbcd82d21356 110:3cdbbd913f1d
30 30
31 async readFromUrl(url: string | "") { 31 async readFromUrl(url: string | "") {
32 if (!url) { 32 if (!url) {
33 return; 33 return;
34 } 34 }
35 this.url = url;
35 await fetchAndParse(url, this.graph); 36 await fetchAndParse(url, this.graph);
36 37
37 this._read(); 38 this._read();
38 } 39 }
39 40