Skip to content

Commit

Permalink
- (Event) Fixed issue in the Obsidian RegistrationEntry block where f…
Browse files Browse the repository at this point in the history
…ee items in the DDL control that has 0 remaining where not disabled and could still be selected.
  • Loading branch information
ethan-sparkdevnetwork committed Aug 17, 2023
1 parent 49e9228 commit d6c488e
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -98,7 +98,8 @@ export default defineComponent({
dropDownListOptions(): ListItemBag[] {
return this.fee.items.map(i => ({
text: this.getItemLabel(i),
value: i.guid
value: i.guid,
disabled: (i.countRemaining != null && i.countRemaining < 1)
}));
},
numberUpDownGroupOptions(): NumberUpDownGroupOption[] {
Expand Down

0 comments on commit d6c488e

Please sign in to comment.