diff --git a/package.json b/package.json index c4584a1..86be677 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "@auth0/auth0-react": "1.10.2", "@emotion/react": "11.7.1", "@emotion/styled": "11.6.0", - "@kingsrook/qqq-frontend-core": "1.0.72", + "@kingsrook/qqq-frontend-core": "1.0.76", "@mui/icons-material": "5.4.1", "@mui/material": "5.11.1", "@mui/styles": "5.11.1", diff --git a/src/qqq/components/widgets/misc/ScriptViewer.tsx b/src/qqq/components/widgets/misc/ScriptViewer.tsx index afd01ee..7a65f9b 100644 --- a/src/qqq/components/widgets/misc/ScriptViewer.tsx +++ b/src/qqq/components/widgets/misc/ScriptViewer.tsx @@ -242,7 +242,7 @@ export default function ScriptViewer({scriptId, associatedScriptTableName, assoc ////////////////////////////////////////////////////////////////////////////////////// // fetch the full version - including its associated scriptRevisionFile sub-records // ////////////////////////////////////////////////////////////////////////////////////// - const selectedVersion = await qController.get("scriptRevision", version.values.get("id"), true); + const selectedVersion = await qController.get("scriptRevision", version.values.get("id"), null, true); console.log("Fetched selectedVersion:"); console.log(selectedVersion); setSelectedVersionRecord(selectedVersion);