fix: linter
Deploy banu-front / deploy (push) Successful in 1m28s

This commit is contained in:
sajjadtalkhabi
2026-05-28 15:52:48 +03:30
parent 3f3c66a02d
commit 9660e3fe8f
41 changed files with 1669 additions and 1087 deletions
+3 -5
View File
@@ -47,7 +47,7 @@ const customer = (init) => {
init.placeholder = props.placeholder
// Paste pictures and automatically process base64
init.urlconverter_callback = (url, node, onSave, name) => {
init.urlconverter_callback = (url, node, _onSave, _name) => {
if (node === 'img' && url.startsWith('blob:')) {
tinymce.activeEditor && tinymce.activeEditor.uploadImages()
}
@@ -73,7 +73,7 @@ onMounted(() => {
// Listen for text changes and pass them to the outside world
watch(
() => state.contentValue,
(n) => {
() => {
debounce(() => {
emit('update:modelValue', state.contentValue)
})
@@ -112,7 +112,5 @@ const imgUploadFn = async (blobInfo, success, failure) => {
return failure(`HTTP Error: ${response.status}`)
}
const { myInit, contentValue, timeout } = toRefs(state)
const { myInit, contentValue } = toRefs(state)
</script>
<style></style>