1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-29 10:19:41 +02:00

feat(templates): add support for the name property (#1680)

This commit is contained in:
Anthony Lapenna 2018-02-28 08:59:31 +01:00 committed by GitHub
parent b9a1c68ea0
commit 76aeee7237
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 1 deletions

View file

@ -1,5 +1,6 @@
function StackTemplateViewModel(data) {
this.Type = data.type;
this.Name = data.name;
this.Title = data.title;
this.Description = data.description;
this.Note = data.note;