-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: GROWI AI Next #9492
base: master
Are you sure you want to change the base?
feat: GROWI AI Next #9492
Conversation
feat: KnowledgeAssistantManagementModal
|
fix: Module name
…or improved pattern handling
…creating-pecialized-vector-store feat: Implement logic for creating specialized VectorStore
|
||
// check if the value is a grob pattern path | ||
if (value.includes('*')) { | ||
return isGrobPatternPath(value) && isCreatablePage(value.replace('*', '')); |
Check failure
Code scanning / CodeQL
Incomplete string escaping or encoding High
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix AI 5 days ago
To fix the problem, we need to ensure that all occurrences of the asterisk (*
) in the value
string are replaced. This can be achieved by using a regular expression with the global flag (g
). This change ensures that all instances of the asterisk are replaced, not just the first one.
-
Copy modified line R67
@@ -66,3 +66,3 @@ | ||
if (value.includes('*')) { | ||
return isGrobPatternPath(value) && isCreatablePage(value.replace('*', '')); | ||
return isGrobPatternPath(value) && isCreatablePage(value.replace(/\*/g, '')); | ||
} |
…namic path creation
…-access-scope feat: Condition for owners access scope
…an-api-client-for-ai-assistant
…-api-client-for-ai-assistant feat: Implementation of an API client for AiAssistant
…ricted-page-exact-path feat: Enable learning when a RESTRICTED page is accessed via its exact path
…or-create-ai-assistant fix(ai): Query for createConditionForCreateAiAssistant
This reverts commit db3f03f.
This reverts commit 3c03ef6.
No description provided.