Merge pull request #3090 from Abderahman88/patch-2693
[react-calendar] Fix error on deleting calendar event
This commit is contained in:
commit
163a891137
|
@ -145,6 +145,7 @@ Version|Date|Comments
|
||||||
1.0.14|October 16, 2021|Resolve unhandled exception that happens clicking on recurrent events
|
1.0.14|October 16, 2021|Resolve unhandled exception that happens clicking on recurrent events
|
||||||
1.0.15|November 22, 2021|Fix All Day event issue that makes All Day events date expanded to another day instead of being full day event.
|
1.0.15|November 22, 2021|Fix All Day event issue that makes All Day events date expanded to another day instead of being full day event.
|
||||||
1.0.16|December 21, 2021|Upgraded to SPFx 1.12.1
|
1.0.16|December 21, 2021|Upgraded to SPFx 1.12.1
|
||||||
|
1.0.17|October 25, 2022|Fixed issue deleting events (#2693)
|
||||||
|
|
||||||
## Minimal Path to Awesome
|
## Minimal Path to Awesome
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
"This Web Part allows you to manage events in a calendar. Uses a list of existing calendars on any website. The location and name of the list and the dates of the events to be displayed are defined in the properties of the web part."
|
"This Web Part allows you to manage events in a calendar. Uses a list of existing calendars on any website. The location and name of the list and the dates of the events to be displayed are defined in the properties of the web part."
|
||||||
],
|
],
|
||||||
"creationDateTime": "2020-12-04",
|
"creationDateTime": "2020-12-04",
|
||||||
"updateDateTime": "2021-12-21",
|
"updateDateTime": "2022-10-25",
|
||||||
"products": [
|
"products": [
|
||||||
"SharePoint"
|
"SharePoint"
|
||||||
],
|
],
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"solution": {
|
"solution": {
|
||||||
"name": "react-calendar-client-side-solution",
|
"name": "react-calendar-client-side-solution",
|
||||||
"id": "3a13208b-3874-4036-9262-4edd22e88187",
|
"id": "3a13208b-3874-4036-9262-4edd22e88187",
|
||||||
"version": "1.0.12.0",
|
"version": "1.0.17.0",
|
||||||
"includeClientSideAssets": true,
|
"includeClientSideAssets": true,
|
||||||
"skipFeatureDeployment": true,
|
"skipFeatureDeployment": true,
|
||||||
"isDomainIsolated": false
|
"isDomainIsolated": false
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -40,7 +40,6 @@
|
||||||
"react-big-calendar": "^0.24.6",
|
"react-big-calendar": "^0.24.6",
|
||||||
"react-dom": "16.9.0",
|
"react-dom": "16.9.0",
|
||||||
"react-draft-wysiwyg": "^1.13.2",
|
"react-draft-wysiwyg": "^1.13.2",
|
||||||
"spfx-uifabric-themes": "^0.6.0",
|
|
||||||
"string-format": "^2.0.0",
|
"string-format": "^2.0.0",
|
||||||
"typescript": "^3.2.4",
|
"typescript": "^3.2.4",
|
||||||
"xml2js": "^0.4.19"
|
"xml2js": "^0.4.19"
|
||||||
|
@ -69,6 +68,7 @@
|
||||||
"gulp-stylelint": "^8.0.0",
|
"gulp-stylelint": "^8.0.0",
|
||||||
"jest": "^23.6.0",
|
"jest": "^23.6.0",
|
||||||
"karma-junit-reporter": "^1.2.0",
|
"karma-junit-reporter": "^1.2.0",
|
||||||
|
"spfx-uifabric-themes": "^0.6.0",
|
||||||
"stylelint": "^9.10.1",
|
"stylelint": "^9.10.1",
|
||||||
"stylelint-config-standard": "^18.2.0",
|
"stylelint-config-standard": "^18.2.0",
|
||||||
"stylelint-scss": "^3.5.4",
|
"stylelint-scss": "^3.5.4",
|
||||||
|
|
|
@ -315,7 +315,7 @@ export default class Calendar extends React.Component<ICalendarProps, ICalendarS
|
||||||
*/
|
*/
|
||||||
public render(): React.ReactElement<ICalendarProps> {
|
public render(): React.ReactElement<ICalendarProps> {
|
||||||
return (
|
return (
|
||||||
<Customizer {...FluentCustomizations}>
|
<Customizer>
|
||||||
|
|
||||||
|
|
||||||
<div className={styles.calendar} style={{ backgroundColor: 'white', padding: '20px' }}>
|
<div className={styles.calendar} style={{ backgroundColor: 'white', padding: '20px' }}>
|
||||||
|
|
Loading…
Reference in New Issue