fix: Adjust visibility styles for PlaygroundMessage component in preparation for v1.4.5 release
This commit is contained in:
parent
342d544e30
commit
80f5812355
@ -197,8 +197,12 @@ export const PlaygroundMessage = (props: Props) => {
|
|||||||
<div
|
<div
|
||||||
className={`space-x-2 gap-2 mt-3 flex ${
|
className={`space-x-2 gap-2 mt-3 flex ${
|
||||||
props.currentMessageIndex !== props.totalMessages - 1
|
props.currentMessageIndex !== props.totalMessages - 1
|
||||||
? "invisible group-hover:visible"
|
// there is few style issue so i am commenting this out for v1.4.5 release
|
||||||
: ""
|
// next release we will fix this
|
||||||
|
// ? "invisible group-hover:visible"
|
||||||
|
? "hidden group-hover:flex"
|
||||||
|
// ""
|
||||||
|
: "flex"
|
||||||
}`}>
|
}`}>
|
||||||
{props.isTTSEnabled && (
|
{props.isTTSEnabled && (
|
||||||
<Tooltip title={t("tts")}>
|
<Tooltip title={t("tts")}>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user