git ssb

10+

Matt McKegg / patchwork



Commit 4557a7bfe93e3b06fc8154b38538b6b926f8c512

about: put identifiers in quotes

Matt McKegg committed on 3/18/2017, 6:04:00 AM
Parent: eab27f622457908e54a6aae69afd87d09e3c52d5

Files changed

plugs/message/html/render/about.jschanged
plugs/message/html/render/about.jsView
@@ -29,13 +29,13 @@
2929 if (c.name) {
3030 var target = api.profile.html.person(c.about, c.name)
3131 content.push(computed([self, api.about.obs.name(c.about), c.name], (self, a, b) => {
3232 if (self) {
33- return ['self identifies as ', target]
33 + return ['self identifies as "', target, '"']
3434 } else if (a === b) {
3535 return ['identified ', api.profile.html.person(c.about)]
3636 } else {
37- return ['identifies ', api.profile.html.person(c.about), ' as ', target]
37 + return ['identifies ', api.profile.html.person(c.about), ' as "', target, '"']
3838 }
3939 }))
4040 }
4141

Built with git-ssb-web