Prechádzať zdrojové kódy

fix(webapp): improve record deletion modal

Peter Thomassen 1 rok pred
rodič
commit
2da2e839a4
1 zmenil súbory, kde vykonal 1 pridanie a 1 odobranie
  1. 1 1
      www/webapp/src/views/CrudListRecord.vue

+ 1 - 1
www/webapp/src/views/CrudListRecord.vue

@@ -26,7 +26,7 @@ export default {
       texts: {
       texts: {
         banner: () => 'You can edit your DNS records here. If you have questions, feel free to post in <a href="https://talk.desec.io/" target="_blank">our forum</a>, or shoot us an email.',
         banner: () => 'You can edit your DNS records here. If you have questions, feel free to post in <a href="https://talk.desec.io/" target="_blank">our forum</a>, or shoot us an email.',
         create: () => (''),
         create: () => (''),
-        destroy: rrset => (`Delete record set ${rrset.type} ${rrset.subname}?`),
+        destroy: rrset => (`Delete record set for type ${rrset.type} at ${rrset.subname && rrset.subname || "domain origin"}?`),
         destroyInfo: () => ('This operation will permanently remove this information from the DNS.'),
         destroyInfo: () => ('This operation will permanently remove this information from the DNS.'),
       },
       },
       columns: {
       columns: {