Skip to content

Commit

Permalink
fix: issue-relation-columns-width-adjustment (#775)
Browse files Browse the repository at this point in the history
  • Loading branch information
hujiahao-hjh authored Jul 29, 2021
1 parent 1364aab commit 00fe437
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ export const IssueRelation = React.forwardRef((props: IProps, ref: any) => {
{
title: i18n.t('{name} title', { name: i18n.t('project:issue') }),
dataIndex: 'title',
width: 240,
render: (v: string, record: ISSUE.IssueType) => {
const { type, id, iterationID: _iterationID } = record;
const url =
Expand Down Expand Up @@ -141,6 +140,7 @@ export const IssueRelation = React.forwardRef((props: IProps, ref: any) => {
{
title: i18n.t('project:assignee'),
dataIndex: 'assignee',
width: 240,
render: (userId: string, record: ISSUE.Task) => {
const checkRole = [isCreator(record.creator), isAssignee(record.assignee)];
const editAuth = getAuth(authObj.edit, checkRole);
Expand Down

0 comments on commit 00fe437

Please sign in to comment.