We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1d50c0 commit c564056Copy full SHA for c564056
core/src/components/item-sliding/item-sliding.tsx
@@ -262,7 +262,7 @@ export class ItemSliding implements ComponentInterface {
262
// eslint-disable-next-line custom-rules/no-component-on-ready-method
263
const option = (item as any).componentOnReady !== undefined ? await item.componentOnReady() : item;
264
265
- const side = isEndSide(option.side) ? 'end' : 'start';
+ const side = isEndSide(option.side ?? option.getAttribute('side')) ? 'end' : 'start';
266
267
if (side === 'start') {
268
this.leftOptions = option;
0 commit comments