Skip to content

Commit

Permalink
[Merge] merge from dev into main (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
FacerAin authored Aug 10, 2023
2 parents 51203b7 + 7a41df3 commit 8a78429
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/node/NodePlane.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ watch(blueprintNodes, (newValue, oldValue) => {
if (newValue) {
let nodeData = newValue;
addNodes(nodeData);
id += getNodes.value.length;
}
});
Expand All @@ -92,7 +93,6 @@ function onDrop(event) {
position,
label: `${type} node`,
};
addNodes([newNode]);
// align node position after drop, so it's centered to the mouse
Expand Down Expand Up @@ -138,7 +138,7 @@ const exportAndOpenModal = () => {
axios
.post('/terraform/usertf', exportData.value)
.then((res) => {
btnData.value = 'run';
btnData.value = 'destroy';
btnType.value = 'success';
btnMsg.value = 'tf 생성 완료';
btnLoader.value = false;
Expand Down

0 comments on commit 8a78429

Please sign in to comment.