Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
fastgpt-migrated
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
b053b421
authored
Jun 30, 2026
by
Archer
Committed by
GitHub
Jun 30, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mobile voice input (#7215)
* mobile voice input * fix: action
parent
50d29b0c
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
6 deletions
+10
-6
.github/workflows/preview-admin-build.yml
+1
-1
.github/workflows/preview-fastgpt-build.yml
+1
-1
pro
+1
-1
projects/app/src/components/core/chat/ChatContainer/ChatBox/Input/ChatInput.tsx
+1
-1
projects/app/src/components/core/chat/ChatContainer/ChatBox/Input/VoiceInput.tsx
+6
-2
No files found.
.github/workflows/preview-admin-build.yml
View file @
b053b421
...
@@ -68,7 +68,7 @@ jobs:
...
@@ -68,7 +68,7 @@ jobs:
org.opencontainers.image.revision=${{ github.event.pull_request.head.sha }}
org.opencontainers.image.revision=${{ github.event.pull_request.head.sha }}
outputs
:
type=docker,dest=/tmp/fastgpt-pro-image.tar
outputs
:
type=docker,dest=/tmp/fastgpt-pro-image.tar
cache-from
:
type=gha,scope=fastgpt-pro
cache-from
:
type=gha,scope=fastgpt-pro
cache-to
:
type=gha,mode=max,scope=fastgpt-pro
cache-to
:
type=gha,mode=max,scope=fastgpt-pro
,ignore-error=true
-
name
:
Save PR metadata
-
name
:
Save PR metadata
run
:
|
run
:
|
...
...
.github/workflows/preview-fastgpt-build.yml
View file @
b053b421
...
@@ -121,7 +121,7 @@ jobs:
...
@@ -121,7 +121,7 @@ jobs:
org.opencontainers.image.revision=${{ github.event.pull_request.head.sha }}
org.opencontainers.image.revision=${{ github.event.pull_request.head.sha }}
outputs
:
type=docker,dest=/tmp/${{ matrix.image_name }}-image.tar
outputs
:
type=docker,dest=/tmp/${{ matrix.image_name }}-image.tar
cache-from
:
type=gha,scope=${{ matrix.image }}
cache-from
:
type=gha,scope=${{ matrix.image }}
cache-to
:
type=gha,mode=max,scope=${{ matrix.image }}
cache-to
:
type=gha,mode=max,scope=${{ matrix.image }}
,ignore-error=true
-
name
:
Save PR metadata
-
name
:
Save PR metadata
run
:
|
run
:
|
...
...
pro
@
7a412685
Subproject commit
f3872efa0979406dd3b0d04b62d845db16c4f47c
Subproject commit
7a41268519c8dab4f1f7fa55edf93869ee507bae
projects/app/src/components/core/chat/ChatContainer/ChatBox/Input/ChatInput.tsx
View file @
b053b421
...
@@ -536,7 +536,7 @@ const ChatInput = ({
...
@@ -536,7 +536,7 @@ const ChatInput = ({
position=
{
'relative'
}
position=
{
'relative'
}
borderRadius=
{
[
'xl'
,
'xxl'
]
}
borderRadius=
{
[
'xl'
,
'xxl'
]
}
bg=
{
'white'
}
bg=
{
'white'
}
overflow=
{
'display'
}
overflow=
{
mobilePreSpeak
?
'hidden'
:
'display'
}
{
...
(
focusing
{
...
(
focusing
?
activeStyles
?
activeStyles
:
{
:
{
...
...
projects/app/src/components/core/chat/ChatContainer/ChatBox/Input/VoiceInput.tsx
View file @
b053b421
...
@@ -240,7 +240,11 @@ const MobileVoiceInput = ({
...
@@ -240,7 +240,11 @@ const MobileVoiceInput = ({
flex=
"1 0 0"
flex=
"1 0 0"
bg=
{
isSpeaking
?
(
isCancel
?
'red.500'
:
'primary.500'
)
:
'rgba(255, 255, 255, 0.95)'
}
bg=
{
isSpeaking
?
(
isCancel
?
'red.500'
:
'primary.500'
)
:
'rgba(255, 255, 255, 0.95)'
}
backdropFilter=
{
!
isSpeaking
?
'blur(4px)'
:
'none'
}
backdropFilter=
{
!
isSpeaking
?
'blur(4px)'
:
'none'
}
borderRadius=
"xxl"
borderRadius=
{
[
'xl'
,
'xxl'
]
}
sx=
{
{
WebkitTapHighlightColor
:
'transparent'
,
WebkitTouchCallout
:
'none'
}
}
onTouchMove=
{
handleTouchMove
}
onTouchMove=
{
handleTouchMove
}
onTouchEnd=
{
handleTouchEnd
}
onTouchEnd=
{
handleTouchEnd
}
onTouchStart=
{
handleTouchStart
}
onTouchStart=
{
handleTouchStart
}
...
@@ -399,7 +403,7 @@ const VoiceInput = forwardRef<VoiceInputComponentRef, VoiceInputProps>(
...
@@ -399,7 +403,7 @@ const VoiceInput = forwardRef<VoiceInputComponentRef, VoiceInputProps>(
bottom=
{
0
}
bottom=
{
0
}
bg=
"transparent"
bg=
"transparent"
zIndex=
{
5
}
zIndex=
{
5
}
borderRadius=
{
isPc
?
'md'
:
''
}
borderRadius=
{
isPc
?
'md'
:
[
'xl'
,
'xxl'
]
}
onContextMenu=
{
(
e
)
=>
e
.
preventDefault
()
}
onContextMenu=
{
(
e
)
=>
e
.
preventDefault
()
}
>
>
{
isMobileDevice
?
(
{
isMobileDevice
?
(
...
...
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