有什么方法可以去除webchat中的文件附件图标?

问题描述 投票:0回答:1

sample

我正在寻找一种方法来删除这个图标,这是在图片中突出显示。

其他信息。

使用webchat 4.8

在一个Angular项目中实现。

botframework direct-line-botframework web-chat
1个回答
4
投票

是的,你可以通过 hideUploadButton: truestyleOptions. 然后将其传递给Web Chat渲染器。对于完整的列表 styleOptions 参数,参考 这个 文件。

const styleOptions = {
  hideUploadButton: true,
}

[ ... ]

window.WebChat.renderWebChat(
  {
    directLine: window.WebChat.createDirectLine( {
      token: token
    } ),
    styleOptions: styleOptions
  document.getElementById( 'webchat' )
);

希望能帮到你

© www.soinside.com 2019 - 2024. All rights reserved.