Thomas Dekiere
Thomas Dekiere
Think I found the solution. When running `npx nx release publish` you see eventually the following: ```sh > NX Successfully ran target nx-release-publish for project my-lib ``` Note the name...
> If i understand the comment above, you can workaround this issue by configuring release version to update the dist folder? But then the source folder is not matching still...
I call salvattore.recreateColumns(grid) after I removed one or more items from the DOM. This will recreate the grid.
I was already using the validator from `withZod` as workaround which also worked. ```ts const validator = withZod(schema); const result = await validator.validate(data); ``` After your message I had a...
+1 That's also what we need! I also had a fix for this but this solutions seems even better to me :)
@maximilianschmid you may want to use https://github.com/thdk/package-changed while waiting for the next release of install-changed. Disclaimer, it contains mainly code which I borrowed from install-changed.
Thank you for reporting. As a first step to make your life a little easier, I'll look into overwriting favorite groups. This should allow you to make the change once...
```sql with ranked as ( SELECT r.Id, r.time Time, r.project p1, r.userid, r.task t1, r.modified, r.description Description, r.date Date, r.deleted, r.client, r.divisionId, row_number() over (partition by r.id order by r.modified...
@Preachemeat seems not to be so easy to make a user friendly time input field. Do you know of any examples?