diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 00000000..fa2e267c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Discord Server + url: https://discord.com/invite/SPE3npH7Wu + about: A small community to help you with your issues. \ No newline at end of file diff --git a/app/ui/package.json b/app/ui/package.json index daabe64e..96004471 100644 --- a/app/ui/package.json +++ b/app/ui/package.json @@ -1,7 +1,7 @@ { "name": "app", "private": true, - "version": "1.4.3", + "version": "1.4.4", "type": "module", "scripts": { "dev": "vite", diff --git a/app/ui/src/components/Bot/Conversation/ConversationSidebar.tsx b/app/ui/src/components/Bot/Conversation/ConversationSidebar.tsx index 6225d28b..707cce9a 100644 --- a/app/ui/src/components/Bot/Conversation/ConversationSidebar.tsx +++ b/app/ui/src/components/Bot/Conversation/ConversationSidebar.tsx @@ -11,10 +11,14 @@ export const ConversationSidebar = ({ data, defaultIndex, setDefaultIndex, + onChannelChange, + defaultChannel, }: { data: ConversationsByType[]; defaultIndex: number | null; setDefaultIndex: React.Dispatch>; + onChannelChange: (value: string) => void; + defaultChannel: string; }) => { const [hideMenu] = React.useState(false); return ( @@ -31,8 +35,14 @@ export const ConversationSidebar = ({

Conversations