Skip to content

Commit 616bb89

Browse files
authored
Fix position of '$' for prices on Theme page
(In the U.S. common practice is to place the dollar symbol before the numeric value.)
1 parent 0286e60 commit 616bb89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/resources/themes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ order: 804
2828
<h3 class="item-preview-name" :class="{'free': product.price === 0}">
2929
{{product.name}}
3030
</h3>
31-
<b v-if="product.price" class="item-preview-price">{{product.price}}$</b>
31+
<b v-if="product.price" class="item-preview-price">${{product.price}}</b>
3232
</div>
3333
<div class="item-preview-description">{{product.description}}</div>
3434
</div>

0 commit comments

Comments
 (0)