Skip to content

Commit

Permalink
models: fix slice creation (#1130)
Browse files Browse the repository at this point in the history
Fix #1128
  • Loading branch information
xrmx authored and mistercrunch committed Sep 19, 2016
1 parent 1c544c9 commit 8c619e8
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 @@ -696,7 +696,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 8c619e8

Please sign in to comment.