FHIR Chat · Configuring feedback form · IG creation

Stream: IG creation

Topic: Configuring feedback form


view this post on Zulip Bryn Rhodes (May 13 2021 at 18:15):

I see the ability to add a feedback form in the IG tooling, but it's not clear to me how to use it? I've added an input/data/features.yml file:

---
feedback:
    active: true
    formUrl: https://github.com/cqframework/cqf/issues/new

And I'm just using the default footer that should be accessing that data, but I don't see the expected "Propose a change" link in the generated output. Is there more I need to do to configure the publisher to be aware of the features.yml file? @Jose Costa Teixeira

view this post on Zulip Jose Costa Teixeira (May 13 2021 at 18:40):

This only works for google form feedback for now. Is that ok with you?

view this post on Zulip Jose Costa Teixeira (May 13 2021 at 18:42):

and just to be sure: this feature adds the feedback logo to each section:
image.png

view this post on Zulip Jose Costa Teixeira (May 13 2021 at 18:42):

is that what you want?

view this post on Zulip Jose Costa Teixeira (May 13 2021 at 18:42):

the formurl (in the current implementation) is a google form to allow non-github users to create issues

view this post on Zulip Jose Costa Teixeira (May 13 2021 at 18:59):

if you just want the footer, you can try this (this should not activate the feedback icons nor require the google form, but I haven't tested it):

feedback:
  - active: true
    dashboard:
      label: New Issue
      url: https://github.com/cqframework/cqf/issues/new

view this post on Zulip Jose Costa Teixeira (May 13 2021 at 19:00):

and for added fun, you can add the link to the issues page as well as another feedback entry:

feedback:
  - active: true
    dashboard:
      label: New Issue
      url: https://github.com/cqframework/cqf/issues/new
  - active: true
    dashboard:
      label: Issues
      url: https://github.com/cqframework/cqf/issues

view this post on Zulip Jose Costa Teixeira (May 13 2021 at 19:00):

ymmv

view this post on Zulip Bryn Rhodes (May 13 2021 at 21:58):

That worked perfectly, thank you!


Last updated: Apr 12 2022 at 19:14 UTC