Update events.ts to disable Edit Recurrence Series button when user has readonly access
Disable Edit Recurrence Series button when user has readonly access
This commit is contained in:
parent
5d146e40b0
commit
540c3a8ded
|
@ -906,6 +906,12 @@ export class Event extends React.Component<IEventProps, IEventState> {
|
|||
iconProps={{ iconName: 'RecurringEvent' }}
|
||||
allowDisabledFocus={true}
|
||||
onClick={this.onEditRecurrence}
|
||||
disabled={
|
||||
this.state.userPermissions.hasPermissionAdd ||
|
||||
this.state.userPermissions.hasPermissionEdit
|
||||
? false
|
||||
: true
|
||||
}
|
||||
>
|
||||
{strings.editRecurrenceSeries}
|
||||
</DefaultButton>
|
||||
|
|
Loading…
Reference in New Issue