removed unused template property from configureTabs array

This commit is contained in:
David Baldwynn 2017-11-20 18:57:43 -08:00
parent 8d3e605261
commit a3e0e89019

View file

@ -38,19 +38,16 @@ angular.module('forms').directive('configureFormDirective', ['$rootScope', '$sta
{
heading: $translate.instant('GENERAL_TAB'),
route: 'viewForm.configure.general',
template: 'modules/forms/admin/views/adminTabs/configureTabs/general.html',
active: false
},
{
heading: $translate.instant('SELF_NOTIFICATIONS_TAB'),
route: 'viewForm.configure.self_notifications',
template: 'modules/forms/admin/views/adminTabs/configureTabs/self_notifications.html',
active: false
},
{
heading: $translate.instant('RESPONDENT_NOTIFICATIONS_TAB'),
route: 'viewForm.configure.respondent_notifications',
template: 'modules/forms/admin/views/adminTabs/configureTabs/respondent_notifications.html',
active: false
}
];