Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
dify
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ai-tech
dify
Commits
a4481a3f
Unverified
Commit
a4481a3f
authored
May 17, 2023
by
Joel
Committed by
GitHub
May 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: prompt no blank too long break ui (#81)
parent
15f93257
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
index.tsx
...components/app/configuration/prompt-value-panel/index.tsx
+1
-1
index.tsx
web/app/components/base/block-input/index.tsx
+1
-1
No files found.
web/app/components/app/configuration/prompt-value-panel/index.tsx
View file @
a4481a3f
...
...
@@ -73,7 +73,7 @@ const PromptValuePanel: FC<IPromptValuePanelProps> = ({
{
(
promptTemplate
&&
promptTemplate
?.
trim
())
?
(
<
div
className=
"max-h-48 overflow-y-auto text-sm text-gray-700"
className=
"max-h-48 overflow-y-auto text-sm text-gray-700
break-all
"
dangerouslySetInnerHTML=
{
{
__html
:
format
(
replaceStringWithValuesWithFormat
(
promptTemplate
,
promptVariables
,
inputs
)),
}
}
...
...
web/app/components/base/block-input/index.tsx
View file @
a4481a3f
...
...
@@ -63,7 +63,7 @@ const BlockInput: FC<IBlockInputProps> = ({
},
[
isEditing
])
const
style
=
classNames
({
'block px-4 py-1 w-full h-full text-sm text-gray-900 outline-0 border-0'
:
true
,
'block px-4 py-1 w-full h-full text-sm text-gray-900 outline-0 border-0
break-all
'
:
true
,
'block-input--editing'
:
isEditing
,
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment