fix copy pasta
This commit is contained in:
parent
0801e83d3e
commit
efadd4dda0
2 changed files with 4 additions and 5 deletions
|
@ -96,7 +96,6 @@ function buildServiceRecord({ Name, Service, Protocol, ...fields}) {
|
|||
return fields;
|
||||
}
|
||||
|
||||
|
||||
const friendlyRecordDataConfig = {
|
||||
'address': {
|
||||
realRecordToFields: defaultRecordToFields,
|
||||
|
@ -112,7 +111,7 @@ const friendlyRecordDataConfig = {
|
|||
},
|
||||
'name_server': {
|
||||
realRecordToFields: defaultRecordToFields,
|
||||
fields: realRecordDataConfig['CNAME'].fields,
|
||||
fields: realRecordDataConfig['NS'].fields,
|
||||
buildData: defaultBuildData('NS'),
|
||||
getName: defaultGetName,
|
||||
},
|
||||
|
@ -139,7 +138,7 @@ const recordTypeNames = {
|
|||
'soa': 'SOA',
|
||||
}
|
||||
|
||||
/* Name to use with _spf for example */
|
||||
/* Name to use with spf for example */
|
||||
function getFriendlyTypeForRecord(name, type) {
|
||||
return realRecordDataConfig[type].friendlyType;
|
||||
}
|
||||
|
|
|
@ -88,8 +88,8 @@ input[type="submit"]:hover:not([disabled]) {
|
|||
|
||||
button:active:not([disabled]) ,
|
||||
input[type="submit"]:active:not([disabled]) {
|
||||
border-left: 5px solid var(--color-hightlight-2);
|
||||
border-top: 5px solid var(--color-hightlight-2);
|
||||
border-left: 5px solid rgb(var(--color-hightlight-2));
|
||||
border-top: 5px solid rgb(var(--color-hightlight-2));
|
||||
border-right: 5px solid rgb(var(--color-hightlight-1));
|
||||
border-bottom: 5px solid rgb(var(--color-hightlight-1));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue