Trang Le
Trang Le
As I understand with the latest release of SP, focus session can't be used with pomodoro timer enabled.  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++