remove warnings due to type checks
This commit is contained in:
parent
ff4f62870f
commit
6291f3259a
7 changed files with 63 additions and 56 deletions
|
|
@ -39,16 +39,16 @@
|
|||
</template>
|
||||
|
||||
<script setup>
|
||||
import dayjs from "dayjs";
|
||||
import "dayjs/locale/fr";
|
||||
import { useProjectStore } from "../../stores/project";
|
||||
import dayjs from 'dayjs';
|
||||
import 'dayjs/locale/fr';
|
||||
import { useProjectStore } from '../../stores/project';
|
||||
|
||||
dayjs.locale("fr");
|
||||
dayjs.locale('fr');
|
||||
|
||||
const { project } = defineProps({ project: Array });
|
||||
const { project } = defineProps({ project: Object });
|
||||
|
||||
const frenchFormattedModified = dayjs(project.modified).format(
|
||||
"dddd D MMMM YYYY"
|
||||
'dddd D MMMM YYYY'
|
||||
);
|
||||
|
||||
const { stepsLabels, setStatus, isEmptyBrief } = useProjectStore();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue