Skip to content

Commit

Permalink
fix: arrow animation due to re-rendering after collapsed state change
Browse files Browse the repository at this point in the history
  • Loading branch information
ala-n committed Jan 4, 2024
1 parent c72371e commit dc08727
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/panel/plugin-panel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {attr, boolAttr, listen, memoize} from '@exadel/esl/modules/esl-utils/dec
import {UIPPlugin} from '../base/plugin';

export abstract class UIPPluginPanel extends UIPPlugin {
public static readonly observedAttributes: string[] = ['vertical', 'collapsed', ...UIPPlugin.observedAttributes];
public static readonly observedAttributes: string[] = ['vertical', 'collapsible', ...UIPPlugin.observedAttributes];

/** Marker to collapse editor area */
@boolAttr() public collapsed: boolean;
Expand Down

0 comments on commit dc08727

Please sign in to comment.