Skip to content

Commit 7ffa6cc

Browse files
committed
fix: start with void project (#1966)
1 parent 6c271cd commit 7ffa6cc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

client/dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@
4848
</div>
4949
</div>
5050
</app-root>
51-
<script src="runtime.8ef63094e52a66ba.js" type="module"></script><script src="polyfills.c8e7db9850a3ad8b.js" type="module"></script><script src="scripts.40b60f02658462e4.js" defer></script><script src="main.51a4dc379bb23222.js" type="module"></script></body>
51+
<script src="runtime.8ef63094e52a66ba.js" type="module"></script><script src="polyfills.c8e7db9850a3ad8b.js" type="module"></script><script src="scripts.40b60f02658462e4.js" defer></script><script src="main.26ff8e745b53b4b9.js" type="module"></script></body>
5252

5353
</html>

client/dist/main.51a4dc379bb23222.js renamed to client/dist/main.26ff8e745b53b4b9.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fuxa",
3-
"version": "1.2.7-2525",
3+
"version": "1.2.8-2527",
44
"keywords": [],
55
"author": "frangoteam <[email protected]>",
66
"description": "Web-based Process Visualization (SCADA/HMI/Dashboard) software",

client/src/app/editor/editor.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ export class EditorComponent implements OnInit, AfterViewInit, OnDestroy {
326326
this.currentView = null;
327327
this.hmi = this.projectService.getHmi();
328328
// check new hmi
329-
if (this.hmi.views?.length <= 0 && !firstTime) {
329+
if (this.hmi.views?.length <= 0) {
330330
this.hmi.views = [];
331331
this.addView(ProjectService.MainViewName);
332332
} else {

server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fuxa-server",
3-
"version": "1.2.7-2525",
3+
"version": "1.2.8-2527",
44
"description": "Web-based Process Visualization (SCADA/HMI/Dashboard) software",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)