diff options
| author | Alon Levy <alon@pobox.com> | 2015-06-10 00:48:29 +0300 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2015-07-06 12:33:52 +0300 |
| commit | b5b07b76e2549db65f0d1a2b1150315439f73278 (patch) | |
| tree | b7e97c0d5fff7c1a41766a5c2c2cf7f8665dd65d | |
| parent | 9afe276a7598536cf174a4b672691acf6b7dce60 (diff) | |
client: filter names: use node_titles, not types (fix translations)
| -rw-r--r-- | src/client/view/graph_view.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/view/graph_view.js b/src/client/view/graph_view.js index 721e71ed..f7afc733 100644 --- a/src/client/view/graph_view.js +++ b/src/client/view/graph_view.js @@ -93,7 +93,7 @@ function init_checkboxes(graph, update_view) { input.attr("name", type); div.append(input); - div.append(util.capitalize(type)); + div.append(util.capitalize(model_types.node_titles[type])); root.append(div); }); } |
