Projet

Général

Profil

0001-profile-fix-address-autocomplete-JS-loading-47796.patch

Lauréline Guérin, 16 octobre 2020 14:57

Télécharger (1 ko)

Voir les différences:

Subject: [PATCH] profile: fix address autocomplete JS loading (#47796)

 src/authentic2/attribute_kinds.py | 2 ++
 1 file changed, 2 insertions(+)
src/authentic2/attribute_kinds.py
35 35

  
36 36
from django.utils.functional import keep_lazy
37 37

  
38
from gadjo.templatetags.gadjo import xstatic
38 39
from rest_framework import serializers
39 40
from rest_framework.fields import empty
40 41

  
......
117 118

  
118 119
    class Media:
119 120
        js = [
121
            xstatic('jquery.js', 'jquery.min.js'),
120 122
            settings.SELECT2_JS,
121 123
            'authentic2/js/address_autocomplete.js',
122 124
        ]
123
-