use boolean values rather than string values for the radiobuttons

This commit is contained in:
Damien Churchill 2009-07-29 08:19:45 +00:00
parent f4b34637dd
commit 82a4367aa9

View File

@ -49,8 +49,8 @@
name: 'compact_allocation', name: 'compact_allocation',
labelSeparator: '', labelSeparator: '',
items: [ items: [
{boxLabel: _('Compact') + ' ', value: 'true'}, {boxLabel: _('Compact') + ' ', value: true},
{boxLabel: _('Full'), value: 'false'} {boxLabel: _('Full'), value: false}
] ]
})); }));