Skip to content
Snippets Groups Projects
Commit d1647ce8 authored by Alexander Kaschta's avatar Alexander Kaschta :owl: Committed by Janis Streib
Browse files

FIX: Function name

parent b6dd4b5b
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@ export default {
]
return TransactionService.execute(config, ta)
},
getRecrodsByTargetFQDN(config, fqdn) {
getRecordsByTargetFQDN(config, fqdn) {
const ta = [
{ name: 'dns.fqdn.list', old: { value: fqdn } },
{ name: 'dns.record.list', inner_join_ref: { fqdn_list: 'api_fkey_dns_record_target_fqdn' } },
......
......@@ -34,7 +34,7 @@ export default {
methods: {
async fetchData() {
this.records = null
const response = await RRService.getRecrodsByTargetFQDN(this.$store.state.netdb_axios_config, this.$route.params.fqdn)
const response = await RRService.getRecordsByTargetFQDN(this.$store.state.netdb_axios_config, this.$route.params.fqdn)
this.fqdn = response.data.fqdn_list[0]
this.records = response.data.record_list
const fqdnSelections = {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment