Skip to content

Commit 5854695

Browse files
authored
Merge pull request Sofie-Automation#1286 from nrkno/fix/sofie-3470/external-messages-status-ui
2 parents 6f9c82b + 8bded15 commit 5854695

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

meteor/client/ui/Status/ExternalMessages.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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 />

0 commit comments

Comments
 (0)