Olav, I just debugged this.
Here's the fix: Edit reactor.base.abstractMetadata.cfc, replace
method getDisplayField at line 289 with this one:
<cffunction name="getDisplayField" access="public" output="false"
returntype="any" hint="I return the first most obvious field to use as
a display">
<cfset var fields = 0>
<cfset var f = "">
<cfif hasField("name")> <!--- Quick way to do this, so that we can
always get the name field, which generally covers all bases --->
<cfreturn "name">
</cfif>
<!--- If we didnt find a name field, lets get the first string field
--->
<cfset fields = getFields()>