Fix filter on notes theme, fix #713

This commit is contained in:
Pieter Vander Vennet 2022-03-29 21:24:44 +02:00
parent b9a318967d
commit d0abf14806
2 changed files with 18 additions and 13 deletions

View file

@ -86,7 +86,12 @@
{ {
"if": "_total_comments>1", "if": "_total_comments>1",
"then": "speech_bubble" "then": "speech_bubble"
},
{
"if": "_is_import_note~*",
"then": "addSmall"
} }
] ]
} }
], ],
@ -134,7 +139,7 @@
} }
], ],
"question": { "question": {
"en": "Opened by {search}" "en": "Opened by contributor {search}"
} }
} }
] ]
@ -150,7 +155,7 @@
} }
], ],
"question": { "question": {
"en": "<b>Not</b> opened by {search}" "en": "<b>Not</b> opened by contributor {search}"
} }
} }
] ]
@ -159,14 +164,14 @@
"id": "edited_by", "id": "edited_by",
"options": [ "options": [
{ {
"osmTags": "_lastt_user_lc~.*{search}.*", "osmTags": "_last_user_lc~.*{search}.*",
"fields": [ "fields": [
{ {
"name": "search" "name": "search"
} }
], ],
"question": { "question": {
"en": "Opened before {search}" "en": "Last edited by contributor {search}"
} }
} }
] ]
@ -199,7 +204,7 @@
} }
], ],
"question": { "question": {
"en": "Opened by anonymous user" "en": "Created before {search}"
} }
} }
] ]
@ -216,7 +221,7 @@
} }
], ],
"question": { "question": {
"en": "Only show open notes" "en": "Created after {search}"
} }
} }
] ]
@ -227,7 +232,7 @@
{ {
"osmTags": "_opened_by_anonymous_user=true", "osmTags": "_opened_by_anonymous_user=true",
"question": { "question": {
"en": "Hide import notes" "en": "Only show notes opened by an anonymous contributor"
} }
} }
] ]

View file

@ -3748,21 +3748,21 @@
"2": { "2": {
"options": { "options": {
"0": { "0": {
"question": "Opened by {search}" "question": "Opened by contributor {search}"
} }
} }
}, },
"3": { "3": {
"options": { "options": {
"0": { "0": {
"question": "<b>Not</b> opened by {search}" "question": "<b>Not</b> opened by contributor {search}"
} }
} }
}, },
"4": { "4": {
"options": { "options": {
"0": { "0": {
"question": "Opened before {search}" "question": "Last edited by contributor {search}"
} }
} }
}, },
@ -3776,21 +3776,21 @@
"6": { "6": {
"options": { "options": {
"0": { "0": {
"question": "Opened by anonymous user" "question": "Created before {search}"
} }
} }
}, },
"7": { "7": {
"options": { "options": {
"0": { "0": {
"question": "Only show open notes" "question": "Created after {search}"
} }
} }
}, },
"8": { "8": {
"options": { "options": {
"0": { "0": {
"question": "Hide import notes" "question": "Only show notes opened by an anonymous contributor"
} }
} }
}, },