chore: moved settings button in different section

This commit is contained in:
Shariq Ansari 2024-06-06 16:46:45 +05:30
parent 4f25042810
commit e99d6ecaa5

View File

@ -89,17 +89,17 @@ let dropdownOptions = ref([
label: computed(() => __('Docs')), label: computed(() => __('Docs')),
onClick: () => window.open('https://docs.frappe.io/crm', '_blank'), onClick: () => window.open('https://docs.frappe.io/crm', '_blank'),
}, },
],
},
{
group: 'Others',
hideLabel: true,
items: [
{ {
icon: 'settings', icon: 'settings',
label: computed(() => __('Settings')), label: computed(() => __('Settings')),
onClick: () => (showSettingsModal.value = true), onClick: () => (showSettingsModal.value = true),
}, },
],
},
{
group: 'Logout',
hideLabel: true,
items: [
{ {
icon: 'log-out', icon: 'log-out',
label: computed(() => __('Log out')), label: computed(() => __('Log out')),