xapi.event.on('UserInterface Extensions Panel Clicked', (event) => {
    if(event.PanelId == 'reportissue'){
        xapi.command("UserInterface Message Prompt Display", {
              Title: "Report issue"
            , Text: 'Please select what the problem area is'
            , FeedbackId: 'roomfeedback_step1'
            , 'Option.1':'Cleanliness'
            , 'Option.2':'Technical issues with Audio/Video'
            , 'Option.3': 'Other'
          }).catch((error) => { console.error(error); });
    }
});