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 5ca8fc8 commit 630d4eaCopy full SHA for 630d4ea
core/src/components/item-sliding/item-sliding.tsx
@@ -263,7 +263,7 @@ export class ItemSliding implements ComponentInterface {
263
// eslint-disable-next-line custom-rules/no-component-on-ready-method
264
const option = (item as any).componentOnReady !== undefined ? await item.componentOnReady() : item;
265
266
- const side = isEndSide(option.side) ? 'end' : 'start';
+ const side = isEndSide(option.side ?? option.getAttribute('side')) ? 'end' : 'start';
267
268
if (side === 'start') {
269
this.leftOptions = option;
0 commit comments