Skip to content

Commit

Permalink
Possible adminsettings fix
Browse files Browse the repository at this point in the history
  • Loading branch information
remko48 committed Feb 11, 2025
1 parent d670a45 commit 1a496fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/AdminSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ export default {
this[objectType] = {
selectedSource: this.labelOptions.options.find((option) => option.value === data[objectType + '_source'] ?? data[objectType + '_source']),
selectedRegister: this.availableRegistersOptions.options.find((option) => option.value === data[objectType + '_register']),
selectedSchema: this[objectType].availableSchemas?.options?.find((option) => option.value === data[objectType + '_schema']),
selectedSchema: this[objectType]?.availableSchemas?.options?.find((option) => option.value === data[objectType + '_schema']),
}
})
Expand Down

0 comments on commit 1a496fc

Please sign in to comment.