diff --git a/public/locales/zh/translation.json b/public/locales/zh/translation.json index d3dbd2f9c1..c5c8c2c2c5 100644 --- a/public/locales/zh/translation.json +++ b/public/locales/zh/translation.json @@ -752,7 +752,7 @@ "title": "事件管理", "dashboard": "仪表板", "registrants": "注册者", - "actions": "行动", + "actions": "操作", "agendas": "议程", "statistics": "统计数据", "to": "到", diff --git a/src/GraphQl/Queries/ActionItemQueries.ts b/src/GraphQl/Queries/ActionItemQueries.ts index bf76925ac6..7b24dd6138 100644 --- a/src/GraphQl/Queries/ActionItemQueries.ts +++ b/src/GraphQl/Queries/ActionItemQueries.ts @@ -75,54 +75,6 @@ export const ACTION_ITEM_LIST = gql` } `; -export const ACTION_ITEM_LIST_BY_EVENTS = gql` - query actionItemsByEvent($eventId: ID!) { - actionItemsByEvent(eventId: $eventId) { - _id - assignee { - ... on EventVolunteer { - _id - user { - _id - firstName - lastName - image - } - } - ... on EventVolunteerGroup { - _id - name - } - __typename - } - assigner { - _id - firstName - lastName - } - actionItemCategory { - _id - name - } - preCompletionNotes - postCompletionNotes - assignmentDate - dueDate - completionDate - isCompleted - event { - _id - title - } - creator { - _id - firstName - lastName - } - } - } -`; - export const ACTION_ITEMS_BY_USER = gql` query ActionItemsByUser( $userId: ID!