Skip to content

Commit

Permalink
fix: table link placement
Browse files Browse the repository at this point in the history
  • Loading branch information
nextchamp-saqib committed Jan 17, 2024
1 parent c577ada commit 0082ab1
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions frontend/src/query/visual/TableSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,13 @@ async function handleDataSourceChange(option) {
"
class="h-4 w-4 flex-shrink-0 text-gray-600"
/>
<span class="flex-1 truncate">{{ assistedQuery.table.label }}</span>
<ExternalLink
class="h-3 w-3 flex-shrink-0 text-gray-600 opacity-0 transition-all hover:text-gray-800 group-hover:opacity-100"
@click.prevent.stop="onTableLinkClick(assistedQuery.table.table)"
/>
<div class="flex flex-1 items-center gap-1 overflow-hidden">
<span class="truncate">{{ assistedQuery.table.label }}</span>
<ExternalLink
class="h-3 w-3 text-gray-600 opacity-0 transition-all hover:text-gray-800 group-hover:opacity-100"
@click.prevent.stop="onTableLinkClick(assistedQuery.table.table)"
/>
</div>
</div>
<div class="ml-2 flex items-center space-x-2">
<X
Expand Down

0 comments on commit 0082ab1

Please sign in to comment.