Fix the display of revision dates in the asset helper screen.

This commit is contained in:
Colin Kuskie 2013-09-13 09:13:41 -07:00
parent 5736fdf4d1
commit 950dd349db

View file

@ -147,7 +147,7 @@ sub getAssetData {
icon => $asset->getIcon("small"), icon => $asset->getIcon("small"),
type => $asset->getName, type => $asset->getName,
className => $asset->className, className => $asset->className,
revisions => [ $asset->getRevisionDates ], revisions => $asset->getRevisionDates,
); );
return \%fields; return \%fields;