fix: lesson structure issue

This commit is contained in:
Jannat Patel
2024-08-12 20:09:56 +05:30
parent a744a43d14
commit 05ebe4b787
4 changed files with 21 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
<template>
<Dialog
:options="{
title: props.title,
title: singularize(props.title),
size: '2xl',
actions: [
{
@@ -36,7 +36,7 @@
<script setup>
import { Dialog, FormControl, TextEditor, createResource } from 'frappe-ui'
import { reactive, defineModel, computed } from 'vue'
import { showToast } from '@/utils'
import { showToast, singularize } from '@/utils'
const topics = defineModel('reloadTopics')