just updated to newest build, and my controllers all have an extra comma.
designer is generating this extra comma on all controllers
Code:
Ext.define('CPS.controller.TitleBarButtonClick', {
extend: 'Ext.app.Controller',
alias: 'controller.titleBarButtonClick',
,
refs: [
{
ref: 'centerRegion',
selector: '#centerRegion'
},
{
ref: 'myAccountButton',
selector: '#titleBarMyAccountButton'
},
{
ref: 'signOutButton',
selector: '#titleBarSignOutButton'
},
{
ref: 'supportButton',
selector: '#titleBarSupportButton'
},
{
ref: 'administrationButton',
selector: '#titleBarAdministrationButton'
},
{
ref: 'reportingButton',
selector: '#titleBarReportingButton'
},
{
ref: 'newAdminButton',
selector: '#titleBarNewAdminButton'
}
]