@dcrackel/hematournamentui 1.0.443 → 1.0.445
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
<DatePicker :invalid="validation.StartTime" :setDate="localEvent.StartTime" pickerMode="time" @update:selectedDate="handleTimeUpdate"/>
|
|
30
30
|
</div>
|
|
31
31
|
<div class="mb-4 grow">
|
|
32
|
+
{{getWeapons}}
|
|
32
33
|
<BaseText :color="'quinary'" :invalid="validation.WeaponId" :size="'sm'" :text="'Weapon Form'"
|
|
33
34
|
:weight="'normal'" class="mb-1" data-testid="text-start-date"/>
|
|
34
35
|
<DropDownMenu :label="selectedWeapon" :items="getWeapons" :selected-item="selectedWeapon" :alignEnd="false" :width="'w-full'" @update:selectedItem="handleWeaponChange" />
|
|
@@ -122,6 +123,7 @@ export default {
|
|
|
122
123
|
return rule?.RuleValue || '';
|
|
123
124
|
},
|
|
124
125
|
getWeapons() {
|
|
126
|
+
console.log(this.localWeapons);
|
|
125
127
|
return this.localWeapons?.map((weapon) => {
|
|
126
128
|
return {
|
|
127
129
|
text: weapon.Name,
|