diff --git a/dashboard/public/translation/en.json b/dashboard/public/translation/en.json index 1f93d9287..100bebf49 100644 --- a/dashboard/public/translation/en.json +++ b/dashboard/public/translation/en.json @@ -217,7 +217,7 @@ "name": "Name", "users": "Users", "externalLdapTooltip": "From external LDAP directory", - "emptyPlaceholder": "No groups available" + "emptyPlaceholder": "No Groups" }, "settings": { "title": "User Settings", @@ -552,10 +552,10 @@ }, "listing": { "title": "Listing", - "noBackups": "No backups have been made yet.", + "noBackups": "No Backups", "contents": "Contents", "version": "Version", - "noApps": "No apps", + "noApps": "No Apps", "appCount": "{{ appCount }} apps", "tooltipDownloadBackupConfig": "Download Config", "cleanupBackups": "Cleanup Backups", @@ -2010,7 +2010,8 @@ "editVolumeDialog": { "title": "Edit volume {{ name }}" }, - "editActionTooltip": "Edit Volume" + "editActionTooltip": "Edit Volume", + "emptyPlaceholder": "No Volumes" }, "newLoginEmail": { "subject": "[<%= cloudron %>] New login on your account", @@ -2071,7 +2072,7 @@ }, "archives": { "listing": { - "placeholder": "No archived apps" + "placeholder": "No Archived Apps" } }, "backup": { @@ -2102,7 +2103,8 @@ "passwordToken": "Password/Token", "dialog": { "title": "Docker Registry" - } + }, + "emptyPlaceholder": "No Docker Registries" }, "dockerRegistres": { "removeDialog": { diff --git a/dashboard/src/components/DockerRegistries.vue b/dashboard/src/components/DockerRegistries.vue index 8fce698c6..e048d3be1 100644 --- a/dashboard/src/components/DockerRegistries.vue +++ b/dashboard/src/components/DockerRegistries.vue @@ -12,6 +12,7 @@ import DockerRegistriesModel from '../models/DockerRegistriesModel.js'; const dockerRegistriesModel = DockerRegistriesModel.create(); +const busy = ref(true); const registries = ref([]); const columns = { @@ -83,7 +84,9 @@ async function refresh() { } onMounted(async () => { + busy.value = true; await refresh(); + busy.value = false; }); @@ -101,7 +104,7 @@ onMounted(async () => {