Skip to content

Commit 524177c

Browse files
committed
chore: adjust UI
1 parent 8dca329 commit 524177c

5 files changed

Lines changed: 6 additions & 4 deletions

File tree

packages/devtools/src/app/components/data/AssetDetails.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ function openInEditor() {
9494
</div>
9595
</template>
9696

97-
<div flex="~ col gap-4" pl2>
97+
<div flex="~ col gap-4">
9898
<div flex="~ col gap-2">
9999
<div op50>
100100
Chunks

packages/devtools/src/app/components/data/AssetRelationships.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type LinkPoint = 'importer-start' | 'importer-end' | 'import-start' | 'import-en
2222
const MAX_LINKS = 20
2323
const SPACING = {
2424
width: 400,
25-
height: 50,
25+
height: 35,
2626
padding: 4,
2727
marginX: 8,
2828
border: 1,

packages/devtools/src/app/components/data/ModuleImportRelationships.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ type LinkPoint = 'importer-start' | 'importer-end' | 'import-start' | 'import-en
2424
const MAX_LINKS = 20
2525
const SPACING = {
2626
width: 400,
27-
height: 50,
27+
height: 30,
2828
padding: 4,
2929
marginX: 8,
3030
border: 1,

packages/devtools/src/app/components/data/SearchPanel.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ function unselectToggle() {
104104
flex="~ items-center gap-1"
105105
select-none
106106
hover="bg-active"
107+
title="Reverse Selection"
107108
@click="reverseSelect"
108109
>
109110
<div text-xs op50>
@@ -115,6 +116,7 @@ function unselectToggle() {
115116
flex="~ items-center gap-1"
116117
select-none
117118
hover="bg-active"
119+
:title="model.selected?.length === 0 ? 'Select All' : 'Unselect All'"
118120
@click="unselectToggle"
119121
>
120122
<div text-xs op50>

packages/devtools/src/app/pages/session/[session]/graph/index.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const moduleViewTypes = [
3434
icon: 'i-carbon-list',
3535
},
3636
{
37-
label: 'DetailedList',
37+
label: 'Detailed List',
3838
value: 'detailed-list',
3939
icon: 'i-carbon-list-boxes',
4040
},

0 commit comments

Comments
 (0)