@@ -114,7 +114,17 @@ export interface IEditorLinked extends IRCCellEditor {
114114 * @param server - the server instance
115115 * @param contentStore - the contentStore instance
116116 */
117- export function fetchLinkedRefDatabook ( screenName : string , databook : string , selectedRecord : any , displayCol : string | null | undefined , concatMask : string | undefined , server : Server | ServerFull , contentStore : BaseContentStore , name ?: string , decreaseCallback ?: Function ) {
117+ export function fetchLinkedRefDatabook (
118+ screenName : string ,
119+ databook : string ,
120+ selectedRecord : any ,
121+ displayCol : string | null | undefined ,
122+ concatMask : string | undefined ,
123+ server : Server | ServerFull ,
124+ contentStore : BaseContentStore ,
125+ name ?: string ,
126+ decreaseCallback ?: Function
127+ ) {
118128 const refDataBookInfo = contentStore . getDataBook ( screenName , databook ) ;
119129 if ( selectedRecord !== undefined
120130 && ( displayCol || concatMask )
@@ -502,10 +512,12 @@ const UIEditorLinked: FC<IEditorLinked & IExtendableLinkedEditor & IComponentCon
502512 props . screenName ,
503513 props . cellEditor . linkReference . referencedDataBook ,
504514 props . selectedRow ?. data ,
505- props . cellEditor . displayReferencedColumnName ?? props . columnName ,
515+ props . cellEditor . displayReferencedColumnName ,
506516 props . cellEditor . displayConcatMask ,
507517 props . context . server ,
508- props . context . contentStore , props . name ) ;
518+ props . context . contentStore ,
519+ props . name
520+ ) ;
509521 } , [ props . selectedRow ] )
510522
511523 // Add this editor as referencedCellEditor to it's referencedDatabook to update the displaymap
0 commit comments