aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJochen Topf <jochen@topf.org>2014-09-18 12:06:32 +0200
committerJochen Topf <jochen@topf.org>2014-09-18 12:06:32 +0200
commite274cf715745b56c8ff7a413b2e1574f59396299 (patch)
treebc9f75d53c3d9f9472ae2911a531683cb45b5491
parent2ff324aefe41c848d40334101f1f81de57081c99 (diff)
downloadtaginfo-e274cf715745b56c8ff7a413b2e1574f59396299.tar
taginfo-e274cf715745b56c8ff7a413b2e1574f59396299.tar.gz
Remove wiki column in report "Wiki pages about non-existing keys".
This is always set by definition so no reason to show it.
-rw-r--r--web/viewsjs/reports/wiki_pages_about_non_existing_keys.js.erb2
1 files changed, 0 insertions, 2 deletions
diff --git a/web/viewsjs/reports/wiki_pages_about_non_existing_keys.js.erb b/web/viewsjs/reports/wiki_pages_about_non_existing_keys.js.erb
index 8688816..ba42016 100644
--- a/web/viewsjs/reports/wiki_pages_about_non_existing_keys.js.erb
+++ b/web/viewsjs/reports/wiki_pages_about_non_existing_keys.js.erb
@@ -7,7 +7,6 @@ function page_init() {
create_flexigrid('grid-keys', {
url: '/api/4/keys/all?filter=in_wiki,not_in_db&include=wikipages',
colModel: [
- { display: '<img src="/img/sources/wiki.16.png" alt="Wiki" width="16" height="16" title="Wiki"/>', name: 'in_wiki', width: 20, sortable: true, align: 'center' },
{ display: '<%= h(osm.key) %>', name: 'key', width: 250, sortable: true, align: 'left' },
{ display: '<%= h(page.wiki_pages) %>', name: 'wikipages', width: 600, sortable: false, align: 'left' }
],
@@ -27,7 +26,6 @@ function page_init() {
wikilinks.push(w);
});
return { 'cell': [
- fmt_checkmark(row.in_wiki),
link_to_key(row.key),
wikilinks.join(' &nbsp;&bull;&nbsp; ')
] };