Skip to content

Commit 22b33ec

Browse files
authored
Merge pull request #8 from NomadRazor/fix-multi_line_comment
fix multiline comment
2 parents f8697b4 + 9e2b50e commit 22b33ec

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

web/src/components/VDbChart/VDbFieldTooltip.vue

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
</q-card-section>
1212
<q-separator />
1313
<q-card-section>
14-
<div v-if="field.note">Note: {{ field.note }}</div>
14+
<div v-if="field.note" style="white-space: pre;">Note:
15+
{{ field.note }}
16+
</div>
1517
<div v-if="field._enum" class="db-tip-highlights">
1618
<span class="enum-class">ENUM </span>
1719
<span class="enum-type">{{ field._enum.name }}:</span>
@@ -38,9 +40,11 @@
3840

3941
<script setup>
4042
43+
4144
const props = defineProps({
4245
field: Object,
4346
});
47+
4448
4549
</script>
4650

0 commit comments

Comments
 (0)