Mercurial > code > home > repos > reposync
diff view/index.ts @ 22:b9fe6d26b3fa
minor changes, fixes, upgrades
author | drewp@bigasterisk.com |
---|---|
date | Tue, 29 Mar 2022 21:15:51 -0700 |
parents | 5751ef191454 |
children |
line wrap: on
line diff
--- a/view/index.ts Tue Mar 29 21:13:48 2022 -0700 +++ b/view/index.ts Tue Mar 29 21:15:51 2022 -0700 @@ -1,6 +1,6 @@ import { LitElement, html, css } from "lit"; import { customElement, property } from "lit/decorators.js"; -export { StreamedGraph } from "streamed-graph"; +export { StreamedGraph } from "@bigasterisk/streamed-graph"; @customElement("reposync-page") export class ReposyncPage extends LitElement { @@ -30,8 +30,8 @@ render() { return html` - <h1>repo statuses yay</h1> - <streamed-graph url="/collector/graph/reposync" expanded="true"></streamed-graph> + <h1>repo statuses</h1> + <streamed-graph url="/collector/graph/reposync" view="repos.n3" expanded="true"></streamed-graph> `; } }