fixed _build_value_string for ChooseOne fields
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / String.pm
1 package Reaction::UI::ViewPort::Field::String;
2
3 use Reaction::Class;
4 use aliased 'Reaction::UI::ViewPort::Field';
5
6 class String is Field, which {
7   has '+value' => (isa => 'Str');
8 };
9
10 1;