Skip to content

Commit 2ba9e9a

Browse files
authored
Merge pull request #2023 from The-Commit-Company/develop
Release v2.8.3
2 parents f999d91 + 9cbee66 commit 2ba9e9a

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

frontend/src/components/feature/chat/ChatMessage/LeftRightLayout/LeftRightLayout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ export const LeftRightLayout = ({ message, user, isActive, isHighlighted, onRepl
108108
>
109109
<Stack gap={'0'} align={'end'}>
110110
{alignToRight && !is_continuation && <Box className="text-right pr-1 pb-0.5"><DateTooltip timestamp={timestamp} /></Box>}
111-
<Flex direction={'column'} className={clsx("relative w-fit sm:max-w-[32rem] max-w-[80vw] bg-gray-2 dark:bg-gray-3 p-3 gap-1 rounded-md",
111+
<Flex direction={'column'} className={clsx("relative w-fit max-w-[32rem] sm:max-w-[60vw] bg-gray-2 dark:bg-gray-3 p-3 gap-1 rounded-md",
112112
isHighlighted ? 'bg-yellow-50 hover:bg-yellow-50 dark:bg-yellow-300/20 dark:hover:bg-yellow-300/20' : !isDesktop && isHovered ? 'bg-gray-2 dark:bg-gray-3' : ''
113113
)}>
114114
{!is_continuation && !alignToRight ? <Flex align='center' gap='2'>

frontend/src/components/feature/chat/ChatMessage/MessageActions/QuickActions/QuickActions.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export const QuickActions = ({ message, onReply, onEdit, isEmojiPickerOpen, setI
7272
CHAT_STYLE === "Left-Right" ? alignToRight ? "-top-10 right-0" : "-top-10 left-0" : "-top-6 right-4"
7373
)}>
7474
<Flex gap='1'>
75-
{quickEmojis.map((emoji) => {
75+
{(quickEmojis ?? ["👍", "✅", "👀", "🎉"]).map((emoji) => {
7676
return <QuickActionButton
7777
key={emoji}
7878
className={'text-base'}

frontend/src/pages/settings/Preferences.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ const Preferences = () => {
4949
<Stack className="max-w-[480px]">
5050
<Label htmlFor='QuickEmojis'>Set Favourite Emojis for Reactions</Label>
5151
<HStack gap='2'>
52-
{quickEmojis.map((emoji, index) => (
52+
{(quickEmojis ?? ["👍", "✅", "👀", "🎉"]).map((emoji, index) => (
5353
<Popover.Root key={index}>
5454
<Popover.Trigger>
5555
<IconButton

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,12 @@ include_trailing_comma = true
3131
force_grid_wrap = 0
3232
use_parentheses = true
3333
ensure_newline_before_comments = true
34-
indent = "\t"
34+
indent = "\t"
35+
36+
[tool.bench.frappe-dependencies]
37+
frappe = ">=15.0.0,<=17.0.0-dev"
38+
39+
[tool.bench.assets]
40+
build_dir = "./frontend"
41+
out_dir = "../raven/public/raven"
42+
index_html_path = "../raven/www/raven.html"

raven/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.8.2"
1+
__version__ = "2.8.3"
22

33
from raven.raven_integrations.doctype.raven_incoming_webhook.raven_incoming_webhook import ( # noqa
44
handle_incoming_webhook as webhook,

0 commit comments

Comments
 (0)