Skip to content

Commit

Permalink
Fix artist weblink not show
Browse files Browse the repository at this point in the history
  • Loading branch information
up2code committed Jan 13, 2021
1 parent 0b9b048 commit 9a7601e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lib/src/pages/artist_detail_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,13 @@ class ArtistDetailPageView extends StatelessWidget {
),
),
),
Visibility(
visible: controller.artist().webLinks != null &&
controller.artist().webLinks.isNotEmpty,
child: WebLinkGroupList(
webLinks: controller.artist().webLinks ?? []))
Obx(
() => Visibility(
visible: controller.artist().webLinks != null &&
controller.artist().webLinks.isNotEmpty,
child: WebLinkGroupList(
webLinks: controller.artist().webLinks ?? [])),
)
],
)
]))
Expand Down

0 comments on commit 9a7601e

Please sign in to comment.