Skip to content

Commit 8f8e873

Browse files
authored
Fix problem with pricing appears everywhere on non-pricing fields (#2548)
1 parent 738eb44 commit 8f8e873

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/JoinRpg.WebPortal.Models/CustomFieldsViewModels.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public FieldValueViewModel(
148148

149149

150150
// Detecting if field (or its values) has a price or not
151-
HasPrice = ch.Field.SupportsPricing;
151+
HasPrice = ch.Field.HasPrice;
152152

153153
//if not "HasValues" types, will be empty
154154
ValueList = ch.GetDropdownValues()

0 commit comments

Comments
 (0)