]> git.openstreetmap.org Git - nominatim-ui.git/blob - src/components/ReportIssueModal.svelte
267dd8fc50c7fb7c8248a6178947c1482f876174
[nominatim-ui.git] / src / components / ReportIssueModal.svelte
1 <div class="modal fade" id="report-modal">
2   <div class="modal-dialog">
3     <div class="modal-content">
4       <div class="modal-header">
5         <h4 class="modal-title">Report a problem</h4>
6         <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
7       </div>
8       <div class="modal-body">
9         <p>
10           Before reporting problems please read the <a target="_blank" href="https://nominatim.org/release-docs/develop/api/Overview/">user documentation</a>
11           and
12           <a target="_blank" href="https://nominatim.org/release-docs/develop/api/Faq/">FAQ</a>.
13
14           If your problem relates to the address of a particular search result please use the 'details' link 
15           to check how the address was generated before reporting a problem.
16         </p>
17         <p>
18           Use <a target="_blank" href="https://github.com/osm-search/Nominatim/issues">Nominatim issues on github</a>
19           to report problems.
20         </p>
21         <p>
22           Please ensure that you include a full description of the problem, including the search
23           query that you used, the problem with the result and, if the problem relates to missing data,
24           the osm type (node, way, relation) and id of the item that is missing.
25         </p>
26         <p>
27           Problems that contain enough detail are likely to get looked at before ones that require
28           significant research.
29         </p>
30       </div>
31       <div class="modal-footer">
32         <button type="button" class="btn btn-outline-secondary" data-dismiss="modal">OK</button>
33       </div>
34     </div>
35   </div>
36 </div>