We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 189cfee commit c5b29d5Copy full SHA for c5b29d5
apps/frontend/src/pages/servers/manage/[id]/options/network.vue
@@ -391,7 +391,7 @@ const exportDnsRecords = () => {
391
392
const text = Object.entries(records)
393
.map(([type, records]) => {
394
- return `; ${type} Record\n${records.map((record) => `${record.name}. 1 IN ${record.type} ${record.content}`).join("\n")}\n`;
+ return `; ${type} Records\n${records.map((record) => `${record.name}. 1 IN ${record.type} ${record.content}`).join("\n")}\n`;
395
})
396
.join("\n");
397
const blob = new Blob([text], { type: "text/plain" });
0 commit comments