diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-07-03 18:26:38 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-13 18:26:03 +0200 |
commit | 6e443ef21bfa9eea67e7f983727c41d00405a816 (patch) | |
tree | e81d672360a437db08de785b35d831c8b8759833 /ishtar_common/forms.py | |
parent | 71432db3cbf135225fdb432c380db402a3eeffe7 (diff) | |
download | Ishtar-6e443ef21bfa9eea67e7f983727c41d00405a816.tar.bz2 Ishtar-6e443ef21bfa9eea67e7f983727c41d00405a816.zip |
Change criteria search UI to put criteria in the search text (refs #4180)
Diffstat (limited to 'ishtar_common/forms.py')
-rw-r--r-- | ishtar_common/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/forms.py b/ishtar_common/forms.py index bb468eff1..c1e699ab5 100644 --- a/ishtar_common/forms.py +++ b/ishtar_common/forms.py @@ -471,7 +471,7 @@ class TableSelect(IshtarForm): cls += " search-vector" self.fields[k].widget.attrs['class'] = cls if k in ALT_NAMES: - self.fields[k].alt_name = ALT_NAMES[k] + self.fields[k].alt_name = ALT_NAMES[k][0] else: self.fields[k].alt_name = k key = self.fields.keys()[0] |