瀏覽代碼

feat(webapp): improve domain limit hint

Peter Thomassen 4 年之前
父節點
當前提交
0551fcfde7
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      webapp/src/views/DomainList.vue

+ 1 - 1
webapp/src/views/DomainList.vue

@@ -23,7 +23,7 @@ export default {
         },
         },
         texts: {
         texts: {
           banner: () => 'To edit your DNS records, click on one of your domains.',
           banner: () => 'To edit your DNS records, click on one of your domains.',
-          create: () => `You have ${self.availableCount} of ${self.limit_domains} domains left.`,
+          create: () => `You have ${self.availableCount} of ${self.limit_domains} domains left.<br /><small>Contact support to apply for a higher limit.</small>`,
           createWarning: () => (self.availableCount <= 0 ? 'You have reached your maximum number of domains. Please contact support to apply for a higher limit.' : ''),
           createWarning: () => (self.availableCount <= 0 ? 'You have reached your maximum number of domains. Please contact support to apply for a higher limit.' : ''),
           destroy: d => (`Delete domain ${d.name}?`),
           destroy: d => (`Delete domain ${d.name}?`),
           destroyInfo: () => 'This operation will cause the domain to disappear from the DNS. It will no longer be reachable from the Internet.',
           destroyInfo: () => 'This operation will cause the domain to disappear from the DNS. It will no longer be reachable from the Internet.',