makeplane / plane-mobile

📱 🛫 🔥 Mobile App of Plane. Open Source JIRA, Linear and Height Alternative. Plane helps you track your issues, epics, and product roadmaps in the simplest way possible.
GNU Affero General Public License v3.0
165 stars 52 forks source link

[🐛 Bug] Issue detail view is broken #154

Open TheZoker opened 10 months ago

TheZoker commented 10 months ago

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

It's just a big grey overlay.

Screenshot_20231012_193005.jpg

munnadroid commented 8 months ago

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.