Skip to content

Commit

Permalink
feat(fe/asset/play/jig): add author name to jig info
Browse files Browse the repository at this point in the history
  • Loading branch information
RickyLB authored Jul 17, 2023
2 parents bfa172b + da0afbf commit 03faaba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ fn render_jig_info(state: Rc<State>, jig: &JigResponse) -> Dom {
.prop("playedCount", jig.plays as usize)
.prop("likedCount", jig.likes as usize)
.prop("language", &jig.jig_data.language)
// .prop("author", jig.author_id)
.prop("author", jig.author_name.clone())
.prop("publishedAt", {
match jig.published_at {
Some(publish_at) => published_at_string(publish_at, false),
Expand Down

0 comments on commit 03faaba

Please sign in to comment.