@@ -85,11 +85,12 @@ export function CompactProposalList({
8585 const statusOrder : Record < Status , number > = {
8686 confirmed : 1 ,
8787 accepted : 2 ,
88- submitted : 3 ,
89- draft : 4 ,
90- rejected : 5 ,
91- withdrawn : 6 ,
92- deleted : 7 ,
88+ waitlisted : 3 ,
89+ submitted : 4 ,
90+ draft : 5 ,
91+ rejected : 6 ,
92+ withdrawn : 7 ,
93+ deleted : 8 ,
9394 }
9495 return statusOrder [ a . status ] - statusOrder [ b . status ]
9596 } )
@@ -106,8 +107,8 @@ export function CompactProposalList({
106107 const audienceFeedback = proposal . audienceFeedback
107108 const totalFeedback = audienceFeedback
108109 ? audienceFeedback . greenCount +
109- audienceFeedback . yellowCount +
110- audienceFeedback . redCount
110+ audienceFeedback . yellowCount +
111+ audienceFeedback . redCount
111112 : 0
112113 const showFeedback =
113114 conferenceHasEnded &&
@@ -132,11 +133,10 @@ export function CompactProposalList({
132133 return (
133134 < div
134135 key = { proposal . _id }
135- className = { `flex flex-col gap-3 rounded-lg border px-3 py-2.5 text-sm transition-colors sm:flex-row sm:items-center sm:justify-between ${
136- isMuted
136+ className = { `flex flex-col gap-3 rounded-lg border px-3 py-2.5 text-sm transition-colors sm:flex-row sm:items-center sm:justify-between ${ isMuted
137137 ? 'border-gray-200/50 bg-gray-50/50 opacity-60 hover:opacity-80 dark:border-gray-700/50 dark:bg-gray-800/50'
138138 : 'border-gray-200 bg-white hover:border-gray-300 hover:shadow-sm dark:border-gray-700 dark:bg-gray-800 dark:hover:border-gray-600'
139- } `}
139+ } `}
140140 >
141141 < div className = "flex min-w-0 flex-1 items-center gap-3 overflow-hidden" >
142142 { proposal . speakers && proposal . speakers . length > 0 && (
@@ -158,11 +158,10 @@ export function CompactProposalList({
158158 ? `/cfp/proposal?id=${ proposal . _id } ${ queryString ? `&${ queryString . slice ( 1 ) } ` : '' } `
159159 : `/cfp/proposal/${ proposal . _id } ${ queryString } `
160160 }
161- className = { `flex-1 truncate font-medium hover:text-brand-cloud-blue dark:hover:text-blue-400 ${
162- isMuted
161+ className = { `flex-1 truncate font-medium hover:text-brand-cloud-blue dark:hover:text-blue-400 ${ isMuted
163162 ? 'text-gray-600 dark:text-gray-400'
164163 : 'text-gray-900 dark:text-white'
165- } `}
164+ } `}
166165 >
167166 { proposal . title }
168167 </ Link >
0 commit comments