Skip to content

Commit 94a97c1

Browse files
committed
fix(response): replace text-color with text-default
1 parent d562235 commit 94a97c1

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/runtime/renderers/default/FormForgeResponse.vue

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ watch(
653653
<div class="w-full">
654654
<p
655655
v-if="loading"
656-
class="text-sm text-neutral-500"
656+
class="text-sm text-default"
657657
>
658658
{{ t('response.loading') }}
659659
</p>
@@ -667,7 +667,7 @@ watch(
667667

668668
<p
669669
v-else-if="responsePages.length === 0"
670-
class="text-sm text-neutral-500"
670+
class="text-sm text-default"
671671
>
672672
{{ t('response.empty') }}
673673
</p>
@@ -694,7 +694,7 @@ watch(
694694
</h3>
695695
<p
696696
v-if="typeof page.description === 'string' && page.description.trim() !== ''"
697-
class="text-sm text-neutral-500"
697+
class="text-sm text-default"
698698
>
699699
{{ page.description }}
700700
</p>
@@ -746,7 +746,7 @@ watch(
746746
<UIcon
747747
v-else
748748
name="i-lucide-file"
749-
class="h-5 w-5 shrink-0 text-neutral-500"
749+
class="h-5 w-5 shrink-0 text-default"
750750
/>
751751

752752
<div class="min-w-0 flex-1">
@@ -755,7 +755,7 @@ watch(
755755
</p>
756756
<p
757757
v-if="file.mimeType"
758-
class="text-xs text-neutral-500"
758+
class="text-xs text-default"
759759
>
760760
{{ file.mimeType }}
761761
</p>
@@ -843,7 +843,7 @@ watch(
843843
<UIcon
844844
v-else
845845
name="i-lucide-file"
846-
class="h-5 w-5 shrink-0 text-neutral-500"
846+
class="h-5 w-5 shrink-0 text-default"
847847
/>
848848

849849
<div class="min-w-0 flex-1">
@@ -852,7 +852,7 @@ watch(
852852
</p>
853853
<p
854854
v-if="file.mimeType"
855-
class="text-xs text-neutral-500"
855+
class="text-xs text-default"
856856
>
857857
{{ file.mimeType }}
858858
</p>

0 commit comments

Comments
 (0)