diff --git a/lib/WebGUI/Form/List.pm b/lib/WebGUI/Form/List.pm index 923506057..86d789040 100644 --- a/lib/WebGUI/Form/List.pm +++ b/lib/WebGUI/Form/List.pm @@ -189,7 +189,7 @@ Return all the options sub displayValue { my ($self) = @_; - return join ", ", $self->getValues(); + return return join ", ", map { $self->get('options')->{$_} } $self->getValues(); } #-------------------------------------------------------------------