# HG changeset patch # User drewp@bigasterisk.com # Date 1653977938 25200 # Node ID cb755686924473cc041655983acaa2fa1ce50624 # Parent bbd6816d9e9e1c1413a63821f22ea0d296b25c85 ResourceDisplay ignore more patches diff -r bbd6816d9e9e -r cb7556869244 light9/web/ResourceDisplay.ts --- a/light9/web/ResourceDisplay.ts Sun May 29 02:54:57 2022 -0700 +++ b/light9/web/ResourceDisplay.ts Mon May 30 23:18:58 2022 -0700 @@ -115,10 +115,15 @@ } runUriHandler() { + this.graph.runHandler(this.onUri.bind(this), `rdisplay ${this.href()}` /*needs uniqueness?*/); } onUri(patch?: Patch) { + if (patch && !patchContainsPreds(patch, [this.graph.Uri("rdfs:label")])) { + return; + } + if (!this.uri) { this.label = ""; return;