Trang Le

Results 72 comments of Trang Le

As I understand with the latest release of SP, focus session can't be used with pomodoro timer enabled. ![Screenshot from 2023-11-24 20-19-18](https://github.com/johannesjo/super-productivity/assets/28924121/170653f8-03bf-4b0b-8553-589f65e0f5d4) And I discovered something else similar to what...

@vmandrychenko The mention menu's position is set to absolute. In the demo, it is a child of the `` element so there is no issue. However, in your project, the...

`ng lint` failed because `autocomplete-dropdown.e2e.ts` has object properties that don't follow the naming conventions of `["camelCase", "snake_case", "UPPER_CASE", "PascalCase"]`. In my local branch, I added a filter to pass `ng...

Is there a way to customize `ng lint` in the pre-commit hook to only run on files that are changed? I added a few lines of code (less than 10)...

Yes please and thank you very much 🙏. I don't envy anyone resolving Angular dependencies.

Go to `suna/frontend/package.json` and look for two commands under the `script` key. Specify the port that you want to run the front end through `-p` flag: ``` "scripts": { "dev":...

I've realized that I've been using the "tile pages" feature. I suppose we'll need to calculate the how many A0 pages needed based on the number of columns (or rows)...

> Yes, the out of bounds thing is what I meant by not tiling nicely to an A0 size. Would people still want to create A0 pages if they need...

There are plenty of ways to create UI for duplicating a board. I've chosen to use `` for rendering the context menu that contains several commands, one of which is...

Sure. The error comes from `ElementRef` being injected via constructor parameters instead of using the `inject()` function, which is the preferred pattern in Angular 14++