File tree Expand file tree Collapse file tree 2 files changed +16
-7
lines changed
packages/social-media-app/frontend/src/canvas Expand file tree Collapse file tree 2 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -108,10 +108,11 @@ export const AppSelect = (properties: {
108108 { ( { selected, active } ) => (
109109 < div className = "flex flex-col" >
110110 < span
111- className = { `truncate ${ selected
111+ className = { `truncate ${
112+ selected
112113 ? "font-medium"
113114 : "font-normal"
114- } `}
115+ } `}
115116 >
116117 { app . title }
117118 </ span >
@@ -127,11 +128,14 @@ export const AppSelect = (properties: {
127128 { query . length > 0 && (
128129 < ComboboxOption
129130 className = { ( { active, selected } ) =>
130- `cursor-default select-none relative py-2 pl-10 pr-4 ${ active
131- ? "bg-primary-400 dark:bg-primary-600"
132- : "text-gray-900"
133- } ${ selected &&
134- "bg-primary-600 dark:bg-primary-200" } `
131+ `cursor-default select-none relative py-2 pl-10 pr-4 ${
132+ active
133+ ? "bg-primary-400 dark:bg-primary-600"
134+ : "text-gray-900"
135+ } ${
136+ selected &&
137+ "bg-primary-600 dark:bg-primary-200"
138+ } `
135139 }
136140 value = { unknownApp ( query ) }
137141 >
Original file line number Diff line number Diff line change @@ -98,6 +98,11 @@ export const Replies = (properties: { canvas?: CanvasDB }) => {
9898 { sortedReplies . map ( ( reply ) => (
9999 < div key = { reply . id . toString ( ) } >
100100 < CanvasPreview canvas = { reply } />
101+ < div className = "flex w-full mt-1" >
102+ < span className = "mr-auto text-sm underline" >
103+ { `Replies (0)` }
104+ </ span >
105+ </ div >
101106 </ div >
102107 ) ) }
103108 </ div >
You can’t perform that action at this time.
0 commit comments