mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Make the app name configurable even after the project is built (#731)
### What problem does this PR solve? Make the app name configurable even after the project is built #730 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -60,3 +60,8 @@ export const sortLLmFactoryListBySpecifiedOrder = (list: IFactory[]) => {
|
||||
|
||||
return finalList;
|
||||
};
|
||||
|
||||
export const filterOptionsByInput = (
|
||||
input: string,
|
||||
option: { label: string; value: string } | undefined,
|
||||
) => (option?.label ?? '').toLowerCase().includes(input.toLowerCase());
|
||||
|
||||
Reference in New Issue
Block a user