Skip to content

Commit

Permalink
models: fix slice creation
Browse files Browse the repository at this point in the history
  • Loading branch information
xrmx committed Sep 18, 2016
1 parent afa1f09 commit 8cfea45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caravel/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ def description_markeddown(self):
def link(self):
table_name = escape(self.table_name)
return Markup(
'<a href="{self.url}">{table_name}</a>'.format(**locals()))
'<a href="{self.explore_url}">{table_name}</a>'.format(**locals()))

@property
def perm(self):
Expand Down

0 comments on commit 8cfea45

Please sign in to comment.