Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

[🐛 Bug] Issue detail view is broken #154

Open
TheZoker opened this issue Oct 12, 2023 · 1 comment
Open

[🐛 Bug] Issue detail view is broken #154

TheZoker opened this issue Oct 12, 2023 · 1 comment

Comments

@TheZoker
Copy link
Contributor

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

It's just a big grey overlay.

Screenshot_20231012_193005.jpg

@TheZoker TheZoker changed the title [BUG] Issue detail view is broken [🐛Bug] Issue detail view is broken Oct 12, 2023
@TheZoker TheZoker changed the title [🐛Bug] Issue detail view is broken [🐛 Bug] Issue detail view is broken Oct 12, 2023
@munnadroid
Copy link

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.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants