We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35398d2 commit 3fa94e0Copy full SHA for 3fa94e0
src/showplanner/Item.tsx
@@ -167,7 +167,7 @@ export const Item = memo(function Item({
167
);
168
}
169
data.push(
170
- "ID: " + ("trackid" in x ? x.trackid : "managedid" in x && x.managedid)
+ "ID: " + ("trackid" in x && x.trackid ? x.trackid : "managedid" in x && x.managedid ? x.managedid : "None" )
171
172
if (showDebug) {
173
0 commit comments