Skip to content

Commit

Permalink
Fix terms
Browse files Browse the repository at this point in the history
  • Loading branch information
balen committed Jul 31, 2024
1 parent 4981ee9 commit 9149a4b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/serializers/conclar/session_serializer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -89,16 +89,16 @@ class Conclar::SessionSerializer < ActiveModel::Serializer

if object.recorded
t = {
value: "session_recorded",
value: "session_replay",
category: "Note",
label: "Recorded"
label: "Replay"
}
res << t
else
t = {
value: "session_not_recorded",
value: "session_no_replay",
category: "Note",
label: "Not Recorded"
label: "No Replay"
}
res << t
end
Expand Down

0 comments on commit 9149a4b

Please sign in to comment.