mirror of
https://github.com/directus/directus.git
synced 2026-02-06 01:45:04 -05:00
Bump prettier from 2.2.1 to 2.3.0 (#5593)
* Bump prettier from 2.2.1 to 2.3.0 Bumps [prettier](https://github.com/prettier/prettier) from 2.2.1 to 2.3.0. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/2.2.1...2.3.0) Signed-off-by: dependabot[bot] <support@github.com> * Fix lint issues for updated prettier * Lets remove dev: true again so we can auto-add it later why don't we Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
This commit is contained in:
@@ -246,9 +246,13 @@ export default defineComponent({
|
||||
|
||||
const revisionsDrawerDetail = ref<Vue | null>(null);
|
||||
|
||||
const { info: collectionInfo, defaults, primaryKeyField, isSingleton, accountabilityScope } = useCollection(
|
||||
collection
|
||||
);
|
||||
const {
|
||||
info: collectionInfo,
|
||||
defaults,
|
||||
primaryKeyField,
|
||||
isSingleton,
|
||||
accountabilityScope,
|
||||
} = useCollection(collection);
|
||||
|
||||
const {
|
||||
isNew,
|
||||
|
||||
@@ -188,13 +188,8 @@ export default defineComponent({
|
||||
const collectionsStore = useCollectionsStore();
|
||||
const fieldsStore = useFieldsStore();
|
||||
|
||||
const {
|
||||
availableCollections,
|
||||
systemCollections,
|
||||
fields,
|
||||
currentCollectionPrimaryKey,
|
||||
collectionMany,
|
||||
} = useRelation();
|
||||
const { availableCollections, systemCollections, fields, currentCollectionPrimaryKey, collectionMany } =
|
||||
useRelation();
|
||||
const { hasCorresponding, correspondingLabel } = useCorresponding();
|
||||
|
||||
const relatedCollectionExists = computed(() => {
|
||||
|
||||
@@ -224,15 +224,8 @@ export default defineComponent({
|
||||
const editActive = ref(false);
|
||||
|
||||
const { deleteActive, deleting, deleteField } = useDeleteField();
|
||||
const {
|
||||
duplicateActive,
|
||||
duplicateName,
|
||||
collections,
|
||||
duplicateTo,
|
||||
saveDuplicate,
|
||||
duplicating,
|
||||
duplicable,
|
||||
} = useDuplicate();
|
||||
const { duplicateActive, duplicateName, collections, duplicateTo, saveDuplicate, duplicating, duplicable } =
|
||||
useDuplicate();
|
||||
|
||||
const interfaceName = computed(() => {
|
||||
return interfaces.value.find((inter: InterfaceConfig) => inter.id === props.field.meta?.interface)?.name;
|
||||
|
||||
@@ -151,16 +151,8 @@ export default defineComponent({
|
||||
|
||||
const { loading, preset } = usePreset();
|
||||
const { fields } = useForm();
|
||||
const {
|
||||
edits,
|
||||
hasEdits,
|
||||
initialValues,
|
||||
values,
|
||||
layoutQuery,
|
||||
layoutOptions,
|
||||
updateFilters,
|
||||
searchQuery,
|
||||
} = useValues();
|
||||
const { edits, hasEdits, initialValues, values, layoutQuery, layoutOptions, updateFilters, searchQuery } =
|
||||
useValues();
|
||||
const { save, saving } = useSave();
|
||||
const { deleting, deleteAndQuit, confirmDelete } = useDelete();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user