Reports screen might not properly show up #194
Loading…
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
I get this error when trying to load up the reports screen in the control panel:
Seems to occur when there's at least one unresolved report.
Some more (hopefully) useful info:
Maybe should add this to the contributing guide or something, but you can go to
packages/client/
and runnpx vite build --mode development
and you should get more sensible names and/or file paths in error messages.I think the problem was introduced in
16e9cf91f7
and is that there is aurl
variable which - for the template - shadows the property of the same name.URL.prototype.slice
does not exist.This does already seem to be the case when running
yarn dev
(which calls thewatch
script inpackages/client/
):"watch": "vite build --watch --mode development",