aboutsummaryrefslogtreecommitdiff
path: root/ihatemoney
diff options
context:
space:
mode:
authorTom Biju <tombiju95@yahoo.com>2019-10-31 20:11:03 -0500
committerAlexis Metaireau <alexis@notmyidea.org>2019-11-01 01:11:03 +0000
commitc44784c3ed1c31342bf80879849eefa277aa3fe8 (patch)
tree304091afcd9f29edbe025343343c9f1dd6669050 /ihatemoney
parent3cae4de40d73d3b54dc950297f518cb9c4f588cc (diff)
downloadihatemoney-mirror-c44784c3ed1c31342bf80879849eefa277aa3fe8.zip
ihatemoney-mirror-c44784c3ed1c31342bf80879849eefa277aa3fe8.tar.gz
ihatemoney-mirror-c44784c3ed1c31342bf80879849eefa277aa3fe8.tar.bz2
prevent bill cancellation when cancelling autocomplete (#506)
Diffstat (limited to 'ihatemoney')
-rw-r--r--ihatemoney/templates/list_bills.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/ihatemoney/templates/list_bills.html b/ihatemoney/templates/list_bills.html
index 597dc37..84f7299 100644
--- a/ihatemoney/templates/list_bills.html
+++ b/ihatemoney/templates/list_bills.html
@@ -78,7 +78,7 @@
{% block content %}
<span id="new-bill" class="float-right" {% if not g.project.members %} data-toggle="tooltip" title="{{_('You should start by adding participants')}}" {% endif %}>
- <a href="{{ url_for('.add_bill') }}" class="btn btn-primary float-right {% if not g.project.members %} disabled {% endif %}" data-toggle="modal" data-target="#bill-form">
+ <a href="{{ url_for('.add_bill') }}" class="btn btn-primary float-right {% if not g.project.members %} disabled {% endif %}" data-toggle="modal" data-keyboard="false" data-target="#bill-form">
<i class="icon icon-white plus">{{ static_include("images/plus.svg") | safe }}</i>
{{ _("Add a new bill") }}
</a>