Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

Commit 52e391a

Browse files
committed
Updated highlighting code
1 parent 664d7b6 commit 52e391a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/electron/app/js/bookmarkswindow.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function drawEntry() {
6969

7070
let sex = parseInt(list[index].sex) < 0 ? '' : (parseInt(list[index].sex) == 0 ? 'female' : 'male')
7171
let isNew = parseInt(list[index].newest_replay) > parseInt(list[index].last_viewed) ? 'new' : ''
72-
let monitored = list[index].lamd == undefined ? 'dim' : list[index].lamd.monitor == true ? 'bright yellow' : 'dim'
72+
let monitored = list[index].lamd == undefined ? 'dim' : list[index].lamd.monitor ? 'bright yellow' : 'dim'
7373

7474
$('#bookmark-list').append(`
7575
<tr id="entry-${list[index].uid}" data-viewed="${list[index].last_viewed}" class="${sex} ${isNew}">

0 commit comments

Comments
 (0)