Skip to content

Commit

Permalink
[#45] Initial try to fix module configuration not loading
Browse files Browse the repository at this point in the history
  • Loading branch information
blcham committed Aug 10, 2024
1 parent 60960c6 commit bfc7895
Show file tree
Hide file tree
Showing 11 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ WORKDIR /app
# will be cached unless changes to one of those two files
# are made.
COPY package.json package-lock.json ./
RUN npm install
RUN npm install --legacy-peer-deps

# Copy the main application
COPY ./ /app/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@frogcat/ttl2jsonld": "^0.0.6",
"@kbss-cvut/s-forms": "^0.7.1",
"@tippyjs/react": "^4.2.5",
"@triply/yasgui": "^4.2.14",
"@webpack-cli/serve": "^2.0.5",
Expand Down Expand Up @@ -45,7 +46,6 @@
"react-router-dom": "^5.1.2",
"react-spring": "^8.0.27",
"react-treebeard": "^3.2.4",
"s-forms": "https://kbss.felk.cvut.cz/dist/s-forms-0.2.7.tgz",
"semantic-ui-react": "^0.88.2",
"superagent": "^6.1.0",
"toasted-notes": "^3.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/components/dagre/Dagre.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import ScriptOntologyModal from "../modal/ScriptOntologyModal";
import ScriptExecutionModal from "../modal/ScriptExecutionModal";
import "@triply/yasgui/build/yasgui.min.css";
import SFormsFunctionModal from "../sform/SFormsFunctionModal";
import "s-forms/css/s-forms.min.css"
import "@kbss-cvut/s-forms/css";
import { SemipolarLoading } from 'react-loadingg';
import ErrorModal from "../modal/ErrorModal";
import toast from "toasted-notes";
Expand Down
1 change: 0 additions & 1 deletion src/components/modal/ErrorModal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import SForms from 's-forms';

import {Button, Form, Modal} from "react-bootstrap";
import {Rest} from "../rest/Rest";
Expand Down
1 change: 0 additions & 1 deletion src/components/modal/FunctionExecutionModal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import SForms from 's-forms';

import {Button, Form, Modal} from "react-bootstrap";
import {Rest} from "../rest/Rest";
Expand Down
1 change: 0 additions & 1 deletion src/components/modal/MoveModuleModal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import SForms from 's-forms';

import {Alert, Button, Col, Container, Form, Modal, Row, Table} from "react-bootstrap";
import {
Expand Down
1 change: 0 additions & 1 deletion src/components/modal/ScriptActionsModuleModal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import SForms from 's-forms';

import {Alert, Button, Col, Container, Form, Modal, Row, Table} from "react-bootstrap";
import {
Expand Down
1 change: 0 additions & 1 deletion src/components/modal/ScriptOntologyModal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import SForms from 's-forms';

import {Alert, Button, Col, Container, Form, Modal, Row, Table} from "react-bootstrap";
import {
Expand Down
1 change: 0 additions & 1 deletion src/components/modal/ValidationReportModal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from 'react';
import SForms from 's-forms';

import {Alert, Button, Col, Container, Form, Modal, Row} from "react-bootstrap";
import {
Expand Down
2 changes: 1 addition & 1 deletion src/components/sform/SFormsFunctionModal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import SForms from 's-forms';
import SForms from '@kbss-cvut/s-forms';

import {Button, Modal} from "react-bootstrap";
import {Rest} from "../rest/Rest";
Expand Down
2 changes: 1 addition & 1 deletion src/components/sform/SFormsModal.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import SForms from 's-forms';
import SForms from '@kbss-cvut/s-forms';

import {Button, Modal} from "react-bootstrap";
import {Rest} from "../rest/Rest";
Expand Down

0 comments on commit bfc7895

Please sign in to comment.