Skip to content

Commit

Permalink
Fix #5834: Sidebar header default warning (#5859)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Jan 30, 2024
1 parent 5c6b96e commit 555554d
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions components/lib/sidebar/SidebarBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -261,29 +261,30 @@ const inlineStyles = {
export const SidebarBase = ComponentBase.extend({
defaultProps: {
__TYPE: 'Sidebar',
id: null,
style: null,
className: null,
content: null,
maskStyle: null,
maskClassName: null,
visible: false,
position: 'left',
fullScreen: false,
blockScroll: false,
appendTo: null,
ariaCloseLabel: null,
baseZIndex: 0,
dismissable: true,
showCloseIcon: true,
blockScroll: false,
children: undefined,
className: null,
closeIcon: null,
ariaCloseLabel: null,
closeOnEscape: true,
content: null,
dismissable: true,
fullScreen: false,
header: null,
icons: null,
id: null,
maskClassName: null,
maskStyle: null,
modal: true,
appendTo: null,
transitionOptions: null,
onShow: null,
onHide: null,
children: undefined
onShow: null,
position: 'left',
showCloseIcon: true,
style: null,
transitionOptions: null,
visible: false
},
css: {
classes,
Expand Down

0 comments on commit 555554d

Please sign in to comment.