Skip to content

Commit

Permalink
fix: fix arguments order
Browse files Browse the repository at this point in the history
This is related to the previous fix of the default initialisation of
appDetails.
  • Loading branch information
edoardo committed Dec 3, 2024
1 parent 712c24c commit a6032ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Item/AppItem/Item.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ const AppItem = ({ dashboardMode, windowDimensions, item, apps }) => {
}

if (appDetails) {
const iframeSrc = getIframeSrc(appDetails, item, itemFilters)
const iframeSrc = getIframeSrc(item, itemFilters, appDetails)

const actionButtons =
appDetails.pluginLaunchUrl && isViewMode(dashboardMode) ? (
Expand Down

0 comments on commit a6032ff

Please sign in to comment.