File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
apps/client/components/TicketDetails Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -750,7 +750,7 @@ export default function Ticket() {
750750 < div className = "" >
751751 < div className = "break-words bg-white rounded-md text-black" >
752752 < Frame
753- className = "min-h-[60vh] h-full w-full"
753+ className = "min-h-[60vh] h-full max-h-[80vh] overflow-y-auto w-full"
754754 initialContent = { data . ticket . detail }
755755 />
756756 </ div >
@@ -842,7 +842,7 @@ export default function Ticket() {
842842 data . ticket . comments . map ( ( comment : any ) => (
843843 < li
844844 key = { comment . id }
845- className = "flex flex-col space-y-1 text-sm bg-secondary/50 px-4 py-2 rounded-lg shadow-xl "
845+ className = "flex flex-col space-y-1 text-sm bg-secondary/50 dark:bg-secondary/50 px-4 py-2 rounded-lg "
846846 >
847847 < div className = "flex flex-row space-x-2 items-center" >
848848 < Avatar className = "w-6 h-6" >
@@ -871,8 +871,6 @@ export default function Ticket() {
871871 ) ) }
872872 </ ul >
873873 </ div >
874- </ div >
875- < div >
876874 < div className = "mt-6" >
877875 < div className = "flex space-x-3" >
878876 < div className = "min-w-0 flex-1" >
@@ -885,7 +883,7 @@ export default function Ticket() {
885883 id = "comment"
886884 name = "comment"
887885 rows = { 3 }
888- className = "block w-full bg-transparent rounded-md border-0 py-1.5 shadow-sm ring-1 ring-inset ring-background focus:ring-0 focus:ring-inset focus:ring-gray-900 sm:text-sm sm:leading-6"
886+ className = "block w-full bg-secondary/50 dark:bg-secondary/50 rounded-md border-0 py-1.5 shadow-sm ring-1 ring-inset ring-background focus:ring-0 focus:ring-inset focus:ring-gray-900 sm:text-sm sm:leading-6"
889887 placeholder = {
890888 data . ticket . locked
891889 ? "This ticket is locked"
You can’t perform that action at this time.
0 commit comments