Skip to content

Commit

Permalink
[#51] Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
palagdan committed Aug 29, 2024
1 parent f317eea commit c284b6e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="public/main.css" />
<link rel="stylesheet" href="public/s-forms.css" />
<link rel="stylesheet" href="/main.css" />
<link rel="stylesheet" href="/s-forms.css" />
<script src="/config.js"></script>
<title>S-Pipes UI</title>
</head>
Expand Down
2 changes: 1 addition & 1 deletion src/components/ModuleTypesSelection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ModuleTypesSelection extends React.Component {
key: r["@id"],
text: r["http://www.w3.org/2000/01/rdf-schema#label"],
value: r["@id"],
image: { avatar: true, src: "/public/icons/" + icon },
image: { avatar: true, src: "/icons/" + icon },
};
});
this.setState({
Expand Down
2 changes: 1 addition & 1 deletion src/components/ScriptFunctionSelection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class ScriptFunctionSelection extends React.Component {
key: r[FUNCTION],
text: r[FUNCTION_NAME],
value: r[FUNCTION],
image: { avatar: true, src: "/public/icons/fire-extinguisher.png" },
image: { avatar: true, src: "/icons/fire-extinguisher.png" },
};
});
this.setState({
Expand Down
2 changes: 1 addition & 1 deletion src/components/dagre/Dagre.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class Dagre extends React.Component {
input: n[INPUT_PARAMETER],
output: n[OUTPUT_PARAMETER],
variables: n[MODULE_VARIABLES],
icon: "/public/icons/" + icon,
icon: "/icons/" + icon,
menu: true,
scriptPath: n[SCRIPT_PATH],
parent: n[GROUP],
Expand Down

0 comments on commit c284b6e

Please sign in to comment.