refactored value string building
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / Mutable / ChooseMany.pm
index 8108633..e6702f7 100644 (file)
@@ -33,7 +33,7 @@ class ChooseMany is 'Reaction::UI::ViewPort::Field', which {
     return super() || [];
   };
 
-  implements _build_value_string => as {
+  around _value_string_from_value => sub {
     my $self = shift;
     join ", ", (map {$self->obj_to_name($_->{value}) } @{ $self->current_value_choices })
   };