File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ function ExternalMessagesQueuedMessages({ studioId }: Readonly<ExternalMessagesQ
9696 ExternalMessageQueue . find (
9797 {
9898 studioId : studioId ,
99- sent : { $gt : 0 } ,
99+ sent : { $not : { $ gt : 0 } } ,
100100 } ,
101101 {
102102 sort : {
@@ -234,13 +234,13 @@ function ExternalMessagesRow({ msg }: Readonly<ExternalMessagesRowProps>) {
234234 < td className = "c2" >
235235 { getAllowConfigure ( ) ? (
236236 < React . Fragment >
237- < button className = "action-btn" onClick = { removeMessage } >
237+ < button className = "action-btn mod mls " onClick = { removeMessage } >
238238 < FontAwesomeIcon icon = { faTrash } />
239239 </ button >
240- < button className = "action-btn" onClick = { toggleHoldMessage } >
240+ < button className = "action-btn mod " onClick = { toggleHoldMessage } >
241241 { msg . hold ? < FontAwesomeIcon icon = { faPlay } /> : < FontAwesomeIcon icon = { faPause } /> }
242242 </ button >
243- < button className = "action-btn" onClick = { retryMessage } >
243+ < button className = "action-btn mod " onClick = { retryMessage } >
244244 < FontAwesomeIcon icon = { faRedo } />
245245 </ button >
246246 < br />
You can’t perform that action at this time.
0 commit comments