Lucas Hedding

Results 74 comments of Lucas Hedding

We use [clockify](https://clockify.me/) for time tracking. It would be nice to upload our client lists and time tracking to generate the data needed for invoices.

[Clockify_Time_Report_Detailed_01_09_2022-30_09_2022.csv](https://github.com/invoiceninja/invoiceninja/files/9636039/Clockify_Time_Report_Detailed_01_09_2022-30_09_2022.csv)

``` $ terminus self:update $ terminus self:plugin:reload $ terminus --version Terminus 3.0.9 $ terminus plugins ------------------------- ------------------------------------ ------------------- ---------------- ----------------- Name Description Installed Version Latest Version Compatible With ------------------------- ------------------------------------...

I think simply upgrading to later release of https://github.com/consolidation/output-formatters would fix the problem. See https://github.com/consolidation/output-formatters/pull/99

The composer docs work correctly.

I'm seeing the same functionality. It looks like the logic to render the profile fields hasn't made it into the admin or account themes yet. It is only in the...

I'm seeing this with a fairly simple scenario. I tested with both version 1.9.8 and 2.1.1 versions of phantomjs with no difference in results. It seems timing related. I figured...

Unfortunately, I'm doing this in Drupal and it is for a client site. But one place I'm able to recreate it consistently is with ckeditor loading on a page. I...

I can mostly get it working, except for 1 situation where I clone the original query to build a count query. ```php assert($query instanceof QueryInterface); $count_query = clone $query; ```...

I got the last one working by: ```php assert($query instanceof QueryInterface); $count_query = clone $query; $count_query->count(); $total = $count_query->execute(); ``` Splitting the calls up tricked `MutatingScope::getType()` into realizing the correct...