mirror of
https://github.com/infinilabs/coco-app.git
synced 2025-12-16 11:37:47 +01:00
fix: fix page rapidly flickering issue (#935)
* fix: fix page rapidly flickering issue * docs: update changelog * refactor: update
This commit is contained in:
@@ -28,6 +28,7 @@ fix: duplicate chat content #916
|
|||||||
fix: resolve pinned window shortcut not working #917
|
fix: resolve pinned window shortcut not working #917
|
||||||
fix: WM ext does not work when operating focused win from another display #919
|
fix: WM ext does not work when operating focused win from another display #919
|
||||||
fix(Window Management): Next/Previous Desktop do not work #926
|
fix(Window Management): Next/Previous Desktop do not work #926
|
||||||
|
fix: fix page rapidly flickering issue #935
|
||||||
|
|
||||||
### ✈️ Improvements
|
### ✈️ Improvements
|
||||||
|
|
||||||
@@ -41,7 +42,6 @@ chore: bump tauri_nspanel to v2.1 #933
|
|||||||
refactor: show_coco/hide_coco now use NSPanel's function on macOS #933
|
refactor: show_coco/hide_coco now use NSPanel's function on macOS #933
|
||||||
refactor: procedure that convert_pages() into a func #934
|
refactor: procedure that convert_pages() into a func #934
|
||||||
|
|
||||||
|
|
||||||
## 0.8.0 (2025-09-28)
|
## 0.8.0 (2025-09-28)
|
||||||
|
|
||||||
### ❌ Breaking changes
|
### ❌ Breaking changes
|
||||||
|
|||||||
@@ -334,13 +334,13 @@ export default function ChatInput({
|
|||||||
return (
|
return (
|
||||||
<div className={`w-full relative`}>
|
<div className={`w-full relative`}>
|
||||||
<div
|
<div
|
||||||
|
ref={containerRef}
|
||||||
className={`flex items-center dark:text-[#D8D8D8] rounded-md transition-all relative overflow-hidden`}
|
className={`flex items-center dark:text-[#D8D8D8] rounded-md transition-all relative overflow-hidden`}
|
||||||
>
|
>
|
||||||
{lineCount === 1 && renderSearchIcon()}
|
{lineCount === 1 && renderSearchIcon()}
|
||||||
|
|
||||||
{visibleSearchBar() && (
|
{visibleSearchBar() && (
|
||||||
<div
|
<div
|
||||||
ref={containerRef}
|
|
||||||
className={clsx(
|
className={clsx(
|
||||||
"relative w-full p-2 bg-[#ededed] dark:bg-[#202126]",
|
"relative w-full p-2 bg-[#ededed] dark:bg-[#202126]",
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user