rrs: avoid too many columns in the recipes table

Currently, when you select 'Can't be updated' in the upstream
status filter, the resulting table will add the 'No update reason'
column to the default column set.

Although this is probably useful information to see in the
table itself, it results in too many columns, and a rather
unpleasant layout change.

This patch hides the 'Summary' column whenever you select
'Can't be updated' in the upstream status filter, effectively
replacing the 'Summary' with the 'No update reason' column,
which is probably more relevant in this context. Now you
have less columns distracting you, and a slightly less
jumpy layout change.

A designer would have come up with this solution in the
first place. Sadly, she was never asked.

Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com>
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
This commit is contained in:
Belen Barros Pena 2015-08-13 14:25:36 +01:00 committed by Aníbal Limón
parent e5d6752be6
commit 5440e10e62

View File

@ -218,8 +218,10 @@ $(document).ready(function() {
function applyFilters() {
if (upstreamStatus == 'Can\'t be updated') {
$('.no_update_reason_column').show()
$('.summary_column').hide()
} else {
$('.no_update_reason_column').hide()
$('.summary_column').show()
}
if (upstreamStatus == 'All') {