Search code examples
botframeworkbots

how to change the name of the bot header


enter image description here

I need to change the name of [chat] header bot to Askme. may i know how to change it in Microsoft bot. Image is attched


Solution

  • If you are not using the iframe'd webchat, you can just modify the header's .innerHTML like this:

    var header = document.getElementsByClassName("wc-header");
    header[0].innerHTML = "<span>Askme</span>"