From fc52830c7d009f4c170403c086ee9b059cffacf1 Mon Sep 17 00:00:00 2001 From: Chaim Lev-Ari Date: Wed, 22 Sep 2021 08:00:16 +0300 Subject: [PATCH] fix(customtemplates): show correct type (#5669) --- .../custom-templates-list/customTemplatesListController.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/portainer/components/custom-templates-list/customTemplatesListController.js b/app/portainer/components/custom-templates-list/customTemplatesListController.js index 5c031cc39..818e47aad 100644 --- a/app/portainer/components/custom-templates-list/customTemplatesListController.js +++ b/app/portainer/components/custom-templates-list/customTemplatesListController.js @@ -1,6 +1,6 @@ const CUSTOM_TEMPLATES_TYPES = { - STANDALONE: 1, - SWARM: 2, + SWARM: 1, + STANDALONE: 2, KUBERNETES: 3, };