File tree Expand file tree Collapse file tree
packages/devextreme/js/__internal/ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -229,6 +229,7 @@ class Popover<
229229 }
230230
231231 _detachEvent ( target : PopoverTarget , name : string , event ?: unknown ) {
232+ // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
232233 let eventName : string = event || this . _getEventName ( `${ name } Event` ) ;
233234
234235 if ( ! eventName ) {
@@ -385,6 +386,7 @@ class Popover<
385386 const isHorizontal = this . _isHorizontalSide ( ) && isFlippedByHorizontal ;
386387 const isInside = this . _isPopoverInside ( ) ;
387388
389+ // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
388390 const condition = isVertical || isHorizontal || isInside ;
389391 const positionSide = this . _positionController . _positionSide ;
390392
Original file line number Diff line number Diff line change @@ -678,8 +678,8 @@ class TextEditorBase<
678678 }
679679
680680 const $input = this . _input ( ) ;
681-
682- const { placeholder } = this . option ( ) ;
681+ // There should be no destructuring, because of knockout limitations
682+ const placeholder = this . option ( 'placeholder' ) ;
683683
684684 const placeholderAttributes = {
685685 id : placeholder ? `dx-${ new Guid ( ) } ` : undefined ,
You can’t perform that action at this time.
0 commit comments