Skip to content

Commit

Permalink
style(#74): tooltips in explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
lukashornych committed Dec 6, 2023
1 parent a622976 commit 4c71126
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/components/lab/explorer/LabExplorerCatalogItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,9 @@ function handleAction(action: string) {
class="font-weight-bold"
>
{{ catalog.name }}
<VTooltip activator="parent">
{{ catalog.name }}
</VTooltip>
</VTreeViewItem>

<VTreeViewItem
Expand All @@ -147,9 +150,7 @@ function handleAction(action: string) {
class="text-red"
>
{{ catalog.name }}
<VTooltip
activator="parent"
>
<VTooltip activator="parent">
This catalog couldn't be loaded because it's corrupted.
</VTooltip>
</VTreeViewItem>
Expand Down
3 changes: 3 additions & 0 deletions src/components/lab/explorer/LabExplorerCollectionItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ function handleAction(action: string) {
class="text-gray-light text-sm-body-2"
>
{{ entitySchema.name }}
<VTooltip activator="parent">
{{ entitySchema.name }}
</VTooltip>
</VTreeViewItem>
</template>

Expand Down
3 changes: 3 additions & 0 deletions src/components/lab/explorer/LabExplorerConnectionItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,9 @@ function handleAction(action: string, payload?: any) {
class="font-weight-bold"
>
{{ connection.name }}
<VTooltip activator="parent">
{{ connection.name }}
</VTooltip>
</VTreeViewItem>
</template>

Expand Down

0 comments on commit 4c71126

Please sign in to comment.