Dima Udod

Results 12 comments of Dima Udod

@webdevsamran Hi! Could you check and update your reproduction repository because there are a lot of missing models? For example: CvSkill, CvType, CvSource, CvMedium, Department, Designation, LeaveCategory, PaySlip, PayHead, etc....

> Is there any fix except using inline translation labels. @tahacankurt Hi! As a quick fix you can override `updatedActiveLocale` method of the `EditRecord\Concerns\Translatable` trait. For example, for this demo...

@GekkeGlennDev Hi! You can check here why this happens https://github.com/filamentphp/filament/issues/12403#issuecomment-2071583041 in your case you need to change your code to ```php // This cause the SQL error: ->summarize(Tables\Columns\Summarizers\Sum::make()->using( fn(Builder $builder)...

@atmonshi Hi! It seems you are trying to use your custom repository plugin. https://github.com/atmonshi/issue-cluster/blob/main/composer.json#L72 I tried to install plugin from official repo and everything works fine. You need to find...

@gpibarra Hi! The issue occurs because you are trying to view the author of a deleted post, but the `author_user_id` is not set to null. Therefore, you need to either...

@agencetwogether Hello! The main reason this problem happens is because, in SPA mode, date pickers are initialized only when they appear on the viewport. Then, when you use `live()` for...

I tried to reproduce the bug using your repo but had no luck. I also noticed that you tried to upload a WEBP image. I uploaded it, and everything is...

> weird, I'll try again > > what's your OS? Ubuntu 22.04 and latest Chrome

I don't think this is a dependency issue; it's more related to browser behavior. As a quick solution, we can use a click event. Check #12672, please