File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
packages/devtools/src/app/components Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ defineProps<{
1616 >
1717 <div flex =" ~ gap-1" >
1818 <DisplayFileIcon :filename =" asset.filename" />
19- {{ asset.filename }}
19+ <span overflow-hidden text-ellipsis break-all line-clamp-2 >
20+ {{ asset.filename }}
21+ </span >
2022 </div >
2123 </NuxtLink >
2224 </template >
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ const moduleTree = computed(() => {
5757 </script >
5858
5959<template >
60- <div of-auto max-h-screen pt-40 relative >
60+ <div of-auto max-h-screen pt-45 relative >
6161 <div flex =" ~ col gap-2" p4 >
6262 <DisplayTreeNode
6363 v-if =" Object.keys(moduleTree.workspace.children).length"
Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ defineProps<{
1313 <div w-8 text-right text-xs op50 >
1414 #{{ plugin.plugin_id }}
1515 </div >
16- <DisplayPluginName :name =" plugin.name" />
16+ <span overflow-hidden text-ellipsis break-all line-clamp-2 >
17+ <DisplayPluginName :name =" plugin.name" />
18+ </span >
1719 </div >
1820 </template >
1921 </div >
You can’t perform that action at this time.
0 commit comments