mirror of
https://github.com/farcasclaudiu/Flowise.git
synced 2026-06-28 17:01:00 +03:00
Chore/Safe Parse HTML (#4905)
Refactor: Update pnpm-lock.yaml and enhance UI components for safe HTML rendering - Updated pnpm-lock.yaml to improve dependency management and ensure consistency. - Refactored the JSONViewer component to utilize a new JsonToken for syntax highlighting. - Introduced SafeHTML component to sanitize and safely render HTML content in ViewMessagesDialog and NodeExecutionDetails. - Replaced direct HTML rendering with SafeHTML in ChatMessage component for enhanced security.
This commit is contained in:
@@ -72,7 +72,7 @@ const getAllExecutions = async (filters: ExecutionFilters = {}): Promise<{ data:
|
||||
const queryBuilder = appServer.AppDataSource.getRepository(Execution)
|
||||
.createQueryBuilder('execution')
|
||||
.leftJoinAndSelect('execution.agentflow', 'agentflow')
|
||||
.orderBy('execution.createdDate', 'DESC')
|
||||
.orderBy('execution.updatedDate', 'DESC')
|
||||
.skip((page - 1) * limit)
|
||||
.take(limit)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user