Skip to content

Commit

Permalink
fix: bulk attribute assignment (calcom#17896)
Browse files Browse the repository at this point in the history
remove comment
  • Loading branch information
eunjae-lee authored Nov 29, 2024
1 parent f631abf commit e8daa4f
Show file tree
Hide file tree
Showing 3 changed files with 231 additions and 164 deletions.
3 changes: 3 additions & 0 deletions apps/web/public/static/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -2823,5 +2823,8 @@
"exclude_emails_match_found_error_message": "Please enter a valid work email address",
"disable_org_url_label": "Disable public organization profile and redirect",
"disable_org_url_description": "Redirects {{orgSlug}}.cal.com to {{destination}}",
"single_select": "Single Select",
"multi_select": "Multi Select",
"ADD_NEW_STRINGS_ABOVE_THIS_LINE_TO_PREVENT_MERGE_CONFLICTS": "↑↑↑↑↑↑↑↑↑↑↑↑↑ Add your new strings above here ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑"
}

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { Table } from "@tanstack/react-table";
import type { Dispatch, SetStateAction } from "react";
import { useState } from "react";
import { useState, Fragment } from "react";

import classNames from "@calcom/lib/classNames";
import { useLocale } from "@calcom/lib/hooks/useLocale";
Expand Down Expand Up @@ -121,7 +121,7 @@ export function EventTypesList({ table, orgTeams }: Props) {
selectedEvents.has(id) || (areAllUsersHostForTeam && !removeHostFromEvents.has(id))
);
return (
<>
<Fragment key={team.teamId}>
<ListItem
isTeam
onSelect={() => {
Expand Down Expand Up @@ -200,7 +200,7 @@ export function EventTypesList({ table, orgTeams }: Props) {
/>
);
})}
</>
</Fragment>
);
})}
</CommandGroup>
Expand Down
Loading

0 comments on commit e8daa4f

Please sign in to comment.