1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 05:45:22 +02:00

fix(customtemplates): show correct type (#5669)

This commit is contained in:
Chaim Lev-Ari 2021-09-22 08:00:16 +03:00 committed by GitHub
parent 6d510c4f30
commit fc52830c7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,6 @@
const CUSTOM_TEMPLATES_TYPES = {
STANDALONE: 1,
SWARM: 2,
SWARM: 1,
STANDALONE: 2,
KUBERNETES: 3,
};