css classes for extra preview fields
This commit is contained in:
parent
0141f5b896
commit
60b280bbf9
@ -26,9 +26,9 @@ export class PreviewView extends TemplateView {
|
|||||||
t.div({className: "preview"}, [
|
t.div({className: "preview"}, [
|
||||||
t.p(t.img({className: "avatar", src: vm => vm.avatarUrl})),
|
t.p(t.img({className: "avatar", src: vm => vm.avatarUrl})),
|
||||||
t.h1(vm => vm.name),
|
t.h1(vm => vm.name),
|
||||||
t.p(vm => vm.identifier),
|
t.p({className: "identifier"}, vm => vm.identifier),
|
||||||
t.p({className: {hidden: vm => !vm.memberCount}}, [vm => vm.memberCount, " members"]),
|
t.p({className: {memberCount: true, hidden: vm => !vm.memberCount}}, [vm => vm.memberCount, " members"]),
|
||||||
t.p({className: {hidden: vm => !vm.topic}}, [vm => vm.topic]),
|
t.p({className: {topic: true, hidden: vm => !vm.topic}}, [vm => vm.topic]),
|
||||||
]),
|
]),
|
||||||
t.p({className: {hidden: vm => vm.clientsViewModel}}, t.button({
|
t.p({className: {hidden: vm => vm.clientsViewModel}}, t.button({
|
||||||
className: "primary fullwidth",
|
className: "primary fullwidth",
|
||||||
|
Loading…
Reference in New Issue
Block a user