test: fix discussions and asset testing

This commit is contained in:
Jannat Patel
2024-05-15 17:56:11 +05:30
parent a0fc1b0a9e
commit 7651eb5f97
3 changed files with 12 additions and 16 deletions

View File

@@ -15,10 +15,7 @@
<template #body-content>
<div class="flex flex-col gap-4">
<div>
<div class="mb-1.5 text-sm text-gray-600">
{{ __('Title') }}
</div>
<Input type="text" v-model="topic.title" />
<FormControl v-model="topic.title" :label="__('Title')" type="text" />
</div>
<div>
<div class="mb-1.5 text-sm text-gray-600">
@@ -37,7 +34,7 @@
</Dialog>
</template>
<script setup>
import { Dialog, Input, TextEditor, createResource } from 'frappe-ui'
import { Dialog, FormControl, TextEditor, createResource } from 'frappe-ui'
import { reactive, defineModel, computed } from 'vue'
import { showToast } from '@/utils'