From 9288e0074a6216f48a247004aa18f130862dbb2f Mon Sep 17 00:00:00 2001 From: Shu Muto Date: Tue, 13 Sep 2016 15:37:44 +0900 Subject: [PATCH] Reorder item actions for cluster Since 'Delete Cluster' action is danger, so we should change order of item actions from the point of UX. Now: - 'Delete Cluster' - 'Show Certificate' - 'Sign Certificate' After: - 'Show Certificate' - 'Sign Certificate' - 'Delete Cluster' Change-Id: I8deb6ad6ec371d5a04c690aa3abc53499fb8324b --- .../container-infra/clusters/actions.module.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/magnum_ui/static/dashboard/container-infra/clusters/actions.module.js b/magnum_ui/static/dashboard/container-infra/clusters/actions.module.js index 6bd04153..f4de862e 100644 --- a/magnum_ui/static/dashboard/container-infra/clusters/actions.module.js +++ b/magnum_ui/static/dashboard/container-infra/clusters/actions.module.js @@ -46,14 +46,6 @@ { var clusterResourceType = registry.getResourceType(resourceType); clusterResourceType.itemActions - .append({ - id: 'deleteClusterAction', - service: deleteClusterService, - template: { - type: 'delete', - text: gettext('Delete Cluster') - } - }) .append({ id: 'showCertificateAction', service: showCertificateService, @@ -67,6 +59,14 @@ template: { text: gettext('Sign Certificate') } + }) + .append({ + id: 'deleteClusterAction', + service: deleteClusterService, + template: { + type: 'delete', + text: gettext('Delete Cluster') + } }); clusterResourceType.batchActions