File tree Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Expand file tree Collapse file tree 3 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 65
65
<template >
66
66
<ModalBase :id =" id" @close =" handleClose" >
67
67
<form @submit =" onSubmit" >
68
- <h3 class = " text-lg font-bold " >Create a new Model</h3 >
68
+ <ModalTitleModel >Create a new Model</ModalTitleModel >
69
69
<ModalBaseModel
70
70
:is-disabled =" form.isSubmitting.value"
71
71
:fields =" fields"
Original file line number Diff line number Diff line change 76
76
<template >
77
77
<ModalBase :id =" id" @close =" handleClose" >
78
78
<form @submit =" onSubmit" >
79
- <h3 class = " text-lg font-bold " >Edit the Model</h3 >
79
+ <ModalTitleModel >Edit the Model</ModalTitleModel >
80
80
<ModalBaseModel
81
81
:is-disabled =" form.isSubmitting.value"
82
82
:fields =" fields"
Original file line number Diff line number Diff line change
1
+ <script lang="ts" setup>
2
+ import { InformationCircleIcon } from ' @heroicons/vue/24/solid' ;
3
+ </script >
4
+
5
+ <template >
6
+ <h3 class =" text-lg font-bold" >
7
+ <slot ></slot >
8
+ <div
9
+ class =" tooltip tooltip-bottom"
10
+ data-tip =" The model's name is case-sensitive. If you input " ; Users" ; , then the URL path for that model will be " ; \Users" ; ."
11
+ >
12
+ <InformationCircleIcon class =" ml-2 w-4 h-4" />
13
+ </div >
14
+ </h3 >
15
+ </template >
You can’t perform that action at this time.
0 commit comments