Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FOUR-21707:When we open a case the following error is showing 'ProcessesComponents is not defined' #7991

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions resources/js/next/libraries/processesCatalogueComponents.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import * as ProcessesCatalogueComponents from "../../processes-catalogue/components/utils";

window.ProcessesCatalogueComponents = ProcessesCatalogueComponents;

export default {};
5 changes: 5 additions & 0 deletions resources/js/next/libraries/processesComponents.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import * as ProcessesComponents from "../../processes/components";

window.ProcessesComponents = ProcessesComponents;

export default {};
5 changes: 5 additions & 0 deletions resources/js/next/libraries/screensComponents.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import * as ScreensComponents from "../../processes/screens/components";

window.ScreensComponents = ScreensComponents;

export default {};
5 changes: 5 additions & 0 deletions resources/js/next/libraries/scriptsComponents.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import * as ScriptsComponents from "../../processes/scripts/components";

window.ScriptsComponents = ScriptsComponents;

export default {};
4 changes: 4 additions & 0 deletions resources/js/next/setupMain.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ import bootstrap from "./libraries/bootstrap";
import jquery from "./libraries/jquery";
import lodash from "./libraries/lodash";
import sharedComponents from "./libraries/sharedComponents";
import ProcessesComponents from "./libraries/processesComponents";
import ProcessesCatalogueComponents from "./libraries/processesCatalogueComponents";
import ScriptsComponents from "./libraries/scriptsComponents";
import ScreensComponents from "./libraries/screensComponents";

import vueRouter from "./libraries/vueRouter";
import vueCookies from "./libraries/vueCookies";
Expand Down
Loading