Skip to content

Commit

Permalink
append tooltip on the parent in the request list; cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
enkot committed Nov 14, 2021
1 parent 9b1bd17 commit 8c72fc0
Show file tree
Hide file tree
Showing 4 changed files with 8,244 additions and 8,494 deletions.
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
"core-js": "^3.6.5",
"fuzzysearch": "^1.0.3",
"graphql": "^15.3.0",
"lockr": "^0.8.5",
"portal-vue": "^2.1.7",
"postcss": "^7",
"prettier": "2.4.1",
Expand All @@ -26,12 +25,11 @@
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"url-parse": "^1.4.7",
"v-hotkey": "^0.9.0",
"v-tooltip": "^3.0.0-alpha.21",
"v-tooltip": "^3.0.0-beta.1",
"vue": "^2.6.11",
"vue-clipboard2": "^0.3.3",
"vue-codemirror": "^4.0.6",
"vue-mq": "^1.0.1",
"vue-shortkey": "^3.1.7",
"vuescroll": "^4.16.1",
"vuex": "^3.5.1",
"vuex-persistedstate": "^4.0.0-beta.3",
Expand Down
2 changes: 1 addition & 1 deletion src/components/List.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<li
v-for="entry in filteredEntries"
:key="entry.id"
v-tooltip="entry.request.url"
v-tooltip="{ content: entry.request.url, container: false }"
class="relative group flex items-center px-3 py-2 cursor-pointer hover:text-gray-800 dark:hover:text-white truncate"
:class="[
value === entry.id
Expand Down
2 changes: 1 addition & 1 deletion src/devtools/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Vue.use(VTooltip, {
tooltip: {
placement: 'bottom',
delay: {
show: 100,
show: 300,
hide: 100,
},
}
Expand Down
Loading

0 comments on commit 8c72fc0

Please sign in to comment.