Mosaab Ramadan
Mosaab Ramadan
what worked for me is changing ``` html.overflow-y-hidden { overflow-y: hidden !important; } ``` to ``` html.overflow-y-hidden { overflow-y: auto !important; } ``` in the vuetify.css with this all the...
Hello again, it seems the OWNER field isn't creating a relationship with directus_users when migrating the relations. when the migration ends and i check the data here is what i...
I have checked the V8 directus_relations table, and the owner relationships with other tables aren't stored there. So i think that's why it's not registering the Owner as a relation...
I'll try to create the relationship if the table has the owner field, during the relationship migration. I'll let you know if that works
Hello again, So i adjusted this in shchema.js ```javascript async function downloadSchema(context) { const response = await apiV8.get("/collections"); context.collections = response.data.data.filter( (collection) => collection.collection.startsWith("directus_") === false ).filter( (collection) => !context.skipCollections.includes(collection.collection)...
I faced the same problem in V8 and had to write a custom endpoint as a way around it. i used the ItemsService to patch the inserted record's owner (i...
> ```js > if(item.owner && item.owner !== 1) > { > console.log("item being processed has an owner", item.owner, "matching id is", context.userMap[item.owner+""]) > item.owner = context.userMap[item.owner+""] > console.log("new owner is",...