diff options
| author | Frédéric Buclin <LpSolit@gmail.com> | 2026-01-02 16:55:10 +0100 |
|---|---|---|
| committer | Frédéric Buclin <LpSolit@gmail.com> | 2026-01-02 16:55:10 +0100 |
| commit | eb9c438cec571c6aa5338bbe1f31f9a102203894 (patch) | |
| tree | bd6d643fac3f589abaf84d3e814d57303f91b90c | |
| parent | 61339c1d3d89dfb0068c2ff898a7e66b136b2be5 (diff) | |
| download | bugs-eb9c438cec571c6aa5338bbe1f31f9a102203894.tar bugs-eb9c438cec571c6aa5338bbe1f31f9a102203894.tar.gz bugs-eb9c438cec571c6aa5338bbe1f31f9a102203894.tar.bz2 bugs-eb9c438cec571c6aa5338bbe1f31f9a102203894.tar.xz bugs-eb9c438cec571c6aa5338bbe1f31f9a102203894.zip | |
Do not display "X" when a flag is not set
| -rw-r--r-- | template/en/default/flag/list.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl index 778c3e142..57f68db03 100644 --- a/template/en/default/flag/list.html.tmpl +++ b/template/en/default/flag/list.html.tmpl @@ -125,7 +125,7 @@ <option value="[% dontchange FILTER html %]">[% dontchange FILTER html %]</option> [% END %] [% IF !flag || (can_edit_flag && user.can_request_flag(type)) || flag.setter_id == user.id %] - <option value="X" label="X"></option> + <option value="X" label=" "></option> [% END %] [% IF type.is_active && can_edit_flag %] [% IF (type.is_requestable && user.can_request_flag(type)) || (flag && flag.status == "?") %] |
