hise-flow-graphs 1.0.12 → 1.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +1 -1
- package/package.json +1 -1
- package/src/components/Certificates/WorkspaceCertificate/WorkspaceFileNode/index.tsx +2 -2
- package/src/components/Certificates/WorkspaceCertificate/WorkspaceIDENode.tsx +2 -2
- package/src/components/Certificates/WorkspaceCertificate/WorkspacePipelineNode/helpers.ts +2 -2
package/package.json
CHANGED
|
@@ -26,10 +26,10 @@ const WorkspaceFileNode = (props: NodeProps) => {
|
|
|
26
26
|
toast.success('Copied file into exploration.')
|
|
27
27
|
} else {
|
|
28
28
|
const error: any = await resp.json();
|
|
29
|
-
|
|
30
|
-
toggleFileModal();
|
|
31
29
|
toast.error('Unable to copy file: ' + error.Message);
|
|
32
30
|
}
|
|
31
|
+
|
|
32
|
+
toggleFileModal();
|
|
33
33
|
});
|
|
34
34
|
} catch (error: any) {
|
|
35
35
|
console.log(error);
|
|
@@ -34,10 +34,10 @@ const WorkspaceIDENode = (props: NodeProps) => {
|
|
|
34
34
|
toast.success('Copied IDE setup into exploration.')
|
|
35
35
|
} else {
|
|
36
36
|
const error: any = await resp.json();
|
|
37
|
-
|
|
38
|
-
toggleIDEModal();
|
|
39
37
|
toast.error('Unable to copy IDE: ' + error.Message);
|
|
40
38
|
}
|
|
39
|
+
|
|
40
|
+
toggleIDEModal();
|
|
41
41
|
});
|
|
42
42
|
} catch (error: any) {
|
|
43
43
|
console.log(error);
|
|
@@ -78,10 +78,10 @@ export const startPipeline = async (
|
|
|
78
78
|
toast.success('Started pipeline.')
|
|
79
79
|
} else {
|
|
80
80
|
const error: any = await resp.json();
|
|
81
|
-
|
|
82
|
-
toggleModal();
|
|
83
81
|
toast.error('Unable to start pipeline: ' + error.Message);
|
|
84
82
|
}
|
|
83
|
+
|
|
84
|
+
toggleModal();
|
|
85
85
|
});
|
|
86
86
|
} else {
|
|
87
87
|
refresh();
|