feat: updating category from settings
This commit is contained in:
@@ -104,23 +104,21 @@ const showCategoryForm = () => {
|
||||
}
|
||||
|
||||
const updateCategory = createResource({
|
||||
url: 'frappe.client.set_value',
|
||||
url: 'frappe.client.rename_doc',
|
||||
makeParams(values) {
|
||||
return {
|
||||
doctype: 'LMS Category',
|
||||
name: values.name,
|
||||
fieldname: {
|
||||
category: values.value,
|
||||
},
|
||||
old_name: values.name,
|
||||
new_name: values.category,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
const update = debounce((name, value) => {
|
||||
const update = (name, value) => {
|
||||
updateCategory.submit(
|
||||
{
|
||||
name: name,
|
||||
value: value,
|
||||
category: value,
|
||||
},
|
||||
{
|
||||
onSuccess() {
|
||||
@@ -128,7 +126,7 @@ const update = debounce((name, value) => {
|
||||
},
|
||||
}
|
||||
)
|
||||
}, 500)
|
||||
}
|
||||
</script>
|
||||
<style>
|
||||
.form-control input {
|
||||
|
||||
@@ -254,13 +254,6 @@ const tabs = computed(() => {
|
||||
})
|
||||
})
|
||||
|
||||
watch(
|
||||
() => activeTab.value,
|
||||
(value) => {
|
||||
console.log('Tab watcher', value)
|
||||
}
|
||||
)
|
||||
|
||||
watch(show, async () => {
|
||||
if (show.value) {
|
||||
const currentTab = await tabs.value
|
||||
@@ -268,7 +261,6 @@ watch(show, async () => {
|
||||
.find((item) => item.label === settingsStore.activeTab)
|
||||
activeTab.value = currentTab || tabs.value[0].items[0]
|
||||
} else {
|
||||
console.log('else')
|
||||
activeTab.value = null
|
||||
settingsStore.isSettingsOpen = false
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user