Beispiel #1
0
    createNewTemplate: function($event) {
      $event.preventDefault();
      $event.stopPropagation();

      if (!this.createTemplateName || this.createTemplateName.length === 0) {
        this.showErrorAlert(i18n.t('app.template.details.errorEmptyName'));
        return;
      }

      TemplateActions.createNewTemplate(this.createTemplateName);
    },