summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
authorAlon Levy <alon@pobox.com>2015-01-21 18:07:11 +0200
committerAlon Levy <alon@pobox.com>2015-01-21 19:10:34 +0200
commit94cfdc788bf1a9622632e5ed5b3ea20c84bd53eb (patch)
treed15a226551037d56392c9d03b4305e265f6566ef /src/client
parent7e468367e6f8710754f0b27f3a7de4e5ca50c871 (diff)
client: node_edit: show description for everything
Diffstat (limited to 'src/client')
-rw-r--r--src/client/view/node_info.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/view/node_info.js b/src/client/view/node_info.js
index 9393d9e1..3251bb21 100644
--- a/src/client/view/node_info.js
+++ b/src/client/view/node_info.js
@@ -35,13 +35,13 @@ function show(d) {
f = false,
t = true,
visible = {
- "third-internship-proposal": [t, t, t, f, f],
- "chainlink": [f, f, f, f, f],
- "skill": [f, f, f, f, t],
- "interest": [f, f, f, f, t],
- "_defaults": [f, f, f, f, t],
+ "third-internship-proposal": [t, t, t, t, f],
+ "chainlink": [f, f, f, t, f],
+ "skill": [f, f, f, t, t],
+ "interest": [f, f, f, t, t],
+ "_defaults": [f, f, f, t, t],
},
- fields = ["#status", "#startdate", "#enddate", "#desc", "#url"],
+ fields = ["#status", "#startdate", "#enddate", "#description", "#url"],
flags = visible.hasOwnProperty(d.type) ? visible[d.type] : visible._defaults,
i;