File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33npm install
44npm run build
55mage -v
6- docker- compose up --build --force-recreate
6+ docker compose up --build --force-recreate
Original file line number Diff line number Diff line change @@ -199,12 +199,12 @@ export class BaseQuickwitDataSource
199199 . map ( field_capability => {
200200 return {
201201 text : field_capability . field_name ,
202- value : fieldTypeMap [ field_capability . type ] ,
202+ type : fieldTypeMap [ field_capability . type ] ,
203203 }
204204 } ) ;
205205 const uniquefieldCapabilities = fieldCapabilities . filter ( ( field_capability , index , self ) =>
206206 index === self . findIndex ( ( t ) => (
207- t . text === field_capability . text && t . value === field_capability . value
207+ t . text === field_capability . text && t . type === field_capability . type
208208 ) )
209209 ) . sort ( ( a , b ) => a . text . localeCompare ( b . text ) ) ;
210210 return uniquefieldCapabilities ;
You can’t perform that action at this time.
0 commit comments