makeplane/plane-mobile

[๐Ÿ› Bug] Issue detail view is broken

TheZoker opened this issue ยท 1 comments

The issue detail view for me is broken (see attached screenshot).

It's just a big grey overlay.

Screenshot_20231012_193005.jpg

I think URL is broken in issue_details.dart:

 return Scaffold(
      body: EDITOR(
        from: widget.from,
        url:
            '${dotenv.env['WEB_URL']}m/$workspaceSlug/projects/$projID/issues/${widget.issueId}${widget.isArchive ? '?archive=true' : ''}',
        title: widget.appBarTitle,
      ),
    );

Should be:

  return Scaffold(
      body: EDITOR(
        from: widget.from,
        url:
            '${dotenv.env['WEB_URL']}/$workspaceSlug/projects/$projID/issues/${widget.issueId}${widget.isArchive ? '?archive=true' : ''}',
        title: widget.appBarTitle,
      ),
    );

I have sent the PR as well but it is not merged yet.