We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d2ac51 commit 37de2beCopy full SHA for 37de2be
client/src/components/Common/Heading.vue
@@ -67,9 +67,9 @@ function checkClamped() {
67
68
const clampTooltip = computed(() => {
69
if (isClamped.value) {
70
- return headingRef.value?.textContent?.trim();
+ return headingRef.value?.textContent?.trim() ?? "";
71
}
72
- return undefined;
+ return "";
73
});
74
75
const clampStyle = computed(() => {
client/src/components/History/Layout/DetailsLayout.vue
@@ -139,7 +139,7 @@ function selectText() {
139
v-if="renameable"
140
ref="clickToEditRef"
141
v-model="clickToEditName"
142
- v-b-tooltip.hover="clickToEditClamped ? name : undefined"
+ v-b-tooltip.hover="clickToEditClamped ? name : ''"
143
component="h3"
144
title="..."
145
data-description="name display"
0 commit comments