We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 95c919d + 82fd498 commit 6062f06Copy full SHA for 6062f06
packages/Webkul/Admin/src/Resources/views/components/form/control-group/controls/inline/text.blade.php
@@ -37,7 +37,7 @@ class="group relative h-[18px] !w-full pl-2.5"
37
:style="{ 'text-align': position }"
38
>
39
<span class="cursor-pointer truncate rounded">
40
- @{{ valueLabel ? valueLabel : inputValue?.length > 20 ? inputValue.substring(0, 20) + '...' : inputValue }}
+ @{{ (valueLabel || inputValue || '').length > 20 ? (valueLabel || inputValue).substring(0, 20) + '...' : (valueLabel || inputValue) }}
41
</span>
42
43
<!-- Tooltip -->
0 commit comments