You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have it show every row. No warning in the console.
Actual behavior
Only the first row is shown. There is a warning in the console:
chunk-U3LI7FBV.js?v=c9576f5e:2116 [Vue warn]: <transition> can only be used on a single element or component. Use <transition-group> for lists.
at <BaseTransitionappear=falsepersisted=falsemode=undefined...>
at <Transitionkey=1name="slide" >
at <OTabledata= Array(17)striped=truehoverable=true...>
at <TableDaily>
at <TabMonthly>
at <BaseTransitiononAfterEnter=fn<C> onBeforeLeave=fn<K> appear=false ... >
at <Transitionkey=0css=truename=undefined...>
at <OTabItemvalue=1label="Month" icon-pack="fas" ...>
at <OTabsid="main-tabs" modelValue=1onUpdate:modelValue=fn>
at <ContentBody>
at <App>
Fix
I am not entirely sure if this is the proper way to solve it, but as per the warning, if we change <transition> to <transition-group>, the warning disappears and the Table detail and its transition function as expected. This is true for both single rows, as well as multiple rows.
Pull Request
I will make a PR that demonstrates this fix after finishing this issue.
The text was updated successfully, but these errors were encountered:
Overview of the problem
Oruga version: [0.9.3], also latest
develop
as of this writingVuejs version: [3.5.13]
OS/Browser: Windows 10, latest Chrome
Description
Detail transition is broken and produces a warning in the console when used with a custom detail row that has multiple rows.
Steps to reproduce
Table
custom-detail-row
Expected behavior
Have it show every row. No warning in the console.
Actual behavior
Only the first row is shown. There is a warning in the console:
Fix
I am not entirely sure if this is the proper way to solve it, but as per the warning, if we change
<transition>
to<transition-group>
, the warning disappears and the Table detail and its transition function as expected. This is true for both single rows, as well as multiple rows.Pull Request
I will make a PR that demonstrates this fix after finishing this issue.
The text was updated successfully, but these errors were encountered: