Skip to content

Commit

Permalink
fix(tracing): url truncation and tooltip work-break (#1832)
Browse files Browse the repository at this point in the history
  • Loading branch information
sumimakito authored Dec 4, 2024
1 parent 912af31 commit cdab35a
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
copy-tooltip="Copy"
:text="url"
truncate
:truncation-limit="48"
truncation-limit="auto"
/>
</div>
</div>
Expand Down Expand Up @@ -228,6 +228,15 @@ const spanNothingToDisplay = computed(() => {
font-size: $kui-font-size-30;
font-weight: $kui-font-weight-semibold;
}
.content {
flex-shrink: 1;
min-width: 0;
:deep(.popover-content) {
word-break: break-all;
}
}
}
}
Expand Down

0 comments on commit cdab35a

Please sign in to comment.