From 08defaea8f621c469373f83c8b682bc87a64b151 Mon Sep 17 00:00:00 2001 From: Glandos Date: Sun, 28 Aug 2022 11:24:21 +0200 Subject: [PATCH] use double quotes so that value that contains single quote is not a syntax error --- ihatemoney/templates/home.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ihatemoney/templates/home.html b/ihatemoney/templates/home.html index d1d14cf0..f2c70d01 100644 --- a/ihatemoney/templates/home.html +++ b/ihatemoney/templates/home.html @@ -93,7 +93,7 @@ {% endblock %} {% block js %} $('#creation-form #password').tooltip({ - title: '{{ _("Don\\'t reuse a personal password. Choose a private code and send it to your friends")}}', + title: "{{ _("Don\\'t reuse a personal password. Choose a private code and send it to your friends") }}", trigger: 'focus', placement: 'right' });