0
thantnaylin created
I have set up the chat feature by following this documentation.
Everything is working as it is supposed to be. But I need to customize the UI for chat component (I'm using Angular UI anyway). I had looked for any documentation or guide to achieve it but couldn't find any.
So, anyone please let me know how to achieve it. Thanks.
3 Answer(s)
-
0
Any update?
-
1
Hello,
You can customize UI by downloading the source code. Please follow the steps below. Note: Please be sure working in clean git directory
- Run command below in your aspnet-core folder
abp add-module Volo.Chat --with-source-code --add-to-solution-file
- Run the command below in your root folder and delete
modules
folder which is in aspnet-core folder.git restore --source=HEAD --staged --worktree -- aspnet-core
- Finally add the Chat module again to your project by running the below command in your
aspnet-core
directoryabp add-module Volo.Chat
- Run command below in your aspnet-core folder
-
0
Got it. Thanks!