diff options
author | Dan McGee <dan@archlinux.org> | 2012-07-08 23:24:35 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-07-08 23:24:35 -0500 |
commit | c589f7d930ee7642524ecc33ee41bae79d4edd9b (patch) | |
tree | 09d8119e1bf8d3f07d754457f07c0877a082030b | |
parent | 9c7350650e66b5eb6228778e335a160be5ea7f98 (diff) |
Don't remove approval CSS class when updating signoff list
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | sitestatic/archweb.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sitestatic/archweb.js b/sitestatic/archweb.js index 01d5b269..c0fb3a60 100644 --- a/sitestatic/archweb.js +++ b/sitestatic/archweb.js @@ -288,7 +288,7 @@ function signoff_package() { } /* update the approved column to reflect reality */ var approved = link.closest('tr').children('.approval'); - approved.attr('class', ''); + approved.attr('class', 'approval'); if (data.known_bad) { approved.text('Bad').addClass('signoff-bad'); } else if (!data.enabled) { |