Skip to content

Commit

Permalink
Merge pull request #1277 from The-Commit-Company/develop
Browse files Browse the repository at this point in the history
Release v2.0.1
  • Loading branch information
nikkothari22 authored Jan 29, 2025
2 parents 12b3099 + fa9226a commit 286776d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "raven-ui",
"private": true,
"license": "AGPL-3.0-only",
"version": "2.0.0",
"version": "2.0.1",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,12 @@ const MembersTable = ({ members, isAdmin, workspaceID }: { members: WorkspaceMem
Table: (props) => <Table.Root variant='surface' className='rounded-sm' {...props} />,
TableHead: Table.Header,
TableBody: Table.Body,
TableRow: (props) => <Table.Row className="hover:bg-gray-2" {...props} />,
TableRow: (props) => (
<Table.Row
className="group hover:bg-gray-2 dark:hover:bg-gray-3 [&:has([data-state='open'])]:bg-gray-2 dark:[&:has([data-state='open'])]:bg-gray-3"
{...props}
/>
),
}}
fixedHeaderContent={() => (
<Table.Row>
Expand Down Expand Up @@ -108,7 +113,7 @@ const MemberRow = ({ users, member, isAdmin, workspaceID }: { users: Record<stri
{getDateObject(member.creation).format("Do MMMM YYYY")}
</Text>
</Table.Cell>
{isAdmin ? <Table.Cell><MemberActions member={member} workspaceID={workspaceID} /></Table.Cell> : null}
{isAdmin ? <Table.Cell align='center'><MemberActions member={member} workspaceID={workspaceID} /></Table.Cell> : null}
</>
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "raven",
"version": "2.0.0",
"version": "2.0.1",
"description": "Messaging Application",
"workspaces": [
"frontend"
Expand Down
2 changes: 1 addition & 1 deletion raven/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.0.0"
__version__ = "2.0.1"
2 changes: 1 addition & 1 deletion raven/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "raven-app",
"version": "2.0.0",
"version": "2.0.1",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def validate(self):

def validate_condition(self):
if self.condition:
temp_doc = frappe.get_doc(self.document_type)
temp_doc = frappe.new_doc(self.document_type)
try:
frappe.safe_eval(self.condition, None, get_context(temp_doc.as_dict()))
except Exception:
Expand Down

0 comments on commit 286776d

Please sign in to comment.