Skip to content

Commit b87b0d6

Browse files
replace usagetypeid property name to id on listUsageTypes API call
1 parent 17214fa commit b87b0d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/views/infra/UsageRecords.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ export default {
641641
if (json && json.listusagetypesresponse && json.listusagetypesresponse.usagetype) {
642642
this.usageTypes = [{ id: null, value: '' }, ...json.listusagetypesresponse.usagetype.map(x => {
643643
return {
644-
id: x.usagetypeid,
644+
id: x.id,
645645
value: x.description
646646
}
647647
})]

0 commit comments

Comments
 (0)