Skip to content

Commit

Permalink
fix: when a new network is created, .0/24 instead of 1./24
Browse files Browse the repository at this point in the history
  • Loading branch information
giper45 committed Sep 25, 2024
1 parent 6777111 commit 898d764
Show file tree
Hide file tree
Showing 4 changed files with 3,293 additions and 4,705 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ All notable changes to this project will be documented in this file.
* New terminal on a new tab in visual editor
* Fix the .data bug (delete when .data is empty)

## [master]
## [3.8.3]
### Fixed
* Intermittent on header
* Labs ng-repeat to show properly each lab
* Readme if exist, graph otherwise
* Removed sidebar
* Network issue for .0/24 instead of .1/24

### Removed
* repo image panel: it requires too much response time. Now users can see not downloaded images in lab section.
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"method-override": "^2.3.8",
"mocha": "^10.2.0",
"multer": "^1.4.1",
"mydockerjs": "^2.14.2",
"mydockerjs": "^2.15.0",
"ncp": "^2.0.0",
"node-cmd": "^3.0.0",
"node-pty": "^1.0.0",
Expand Down Expand Up @@ -105,5 +105,6 @@
"sinon": "^7.5.0",
"ws": "3.3.2",
"zombie": "^6.1.4"
}
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
4 changes: 3 additions & 1 deletion public/app/controllers/graph_editor_controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ DSP_GraphEditorController : function DSP_GraphEditorController($scope, $routePa
first:"193",
two:"20",
three:"0",
four:"1"
four:"0"
};
/* Array of
*
Expand Down Expand Up @@ -405,6 +405,8 @@ window.location.href = urlToGo;
containerManager.resetCurrent($scope.imageList, $scope.networkList)
$scope.isAddContainer = true
$scope.showEditContainer = false;
console.log($scope.filterImage)
$scope.filterImage = ""
}
$scope.containerExists = function elementExists(nameContainer) {
if(_.findWhere($scope.containerListToDraw, {name: nameContainer})) {
Expand Down
Loading

0 comments on commit 898d764

Please sign in to comment.