Chart of Accounts: new account si by default disabled

Hi all,

since v12 it is possible to disable account, ok good feature. However, why is every new account by default disabled:

Normally, a new account should be enabled. This gets an extra click for each account. Or am I missing something?

Tried to enable it from source, but in account_tree.js only the other fields seem to be available

fields: [
	{fieldtype:'Data', fieldname:'account_name', label:__('New Account Name'), reqd:true,
		description: __("Name of new Account. Note: Please don't create accounts for Customers and Suppliers")},
	{fieldtype:'Data', fieldname:'account_number', label:__('Account Number'),
		description: __("Number of new Account, it will be included in the account name as a prefix")},
	{fieldtype:'Check', fieldname:'is_group', label:__('Is Group'),
		description: __('Further accounts can be made under Groups, but entries can be made against non-Groups')},
	{fieldtype:'Select', fieldname:'root_type', label:__('Root Type'),
		options: ['Asset', 'Liability', 'Equity', 'Income', 'Expense'].join('\n'),
		depends_on: 'eval:doc.is_group && !doc.parent_account'},
	{fieldtype:'Select', fieldname:'account_type', label:__('Account Type'),
		options: frappe.get_meta("Account").fields.filter(d => d.fieldname=='account_type')[0].options,
		description: __("Optional. This setting will be used to filter in various transactions.")
	},
	{fieldtype:'Float', fieldname:'tax_rate', label:__('Tax Rate'),
		depends_on: 'eval:doc.is_group==0&&doc.account_type=="Tax"'},
	{fieldtype:'Link', fieldname:'account_currency', label:__('Currency'), options:"Currency",
		description: __("Optional. Sets company's default currency, if not specified.")}
],

Any clues to get this back to be more efficient?