Skip to content

Commit 94c49c9

Browse files
committed
Build for production
1 parent 3a8ba85 commit 94c49c9

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

client/dist/assets/i18n/en.json

+1
Original file line numberDiff line numberDiff line change
@@ -912,6 +912,7 @@
912912
"gauges.property-event-action": "Action",
913913
"gauges.property-event-destination": "Destination",
914914
"gauges.property-event-destination-hide-close": "Hide Close",
915+
"gauges.property-event-single-card": "Single Card",
915916
"gauges.property-event-value": "Value",
916917
"gauges.property-event-function": "Function",
917918
"gauges.property-event-input": "Input (only input with name)",

client/dist/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,6 @@
4545
</div>
4646
</div>
4747
</app-root>
48-
<script src="runtime.8ef63094e52a66ba.js" type="module"></script><script src="polyfills.2696a6f9dc75535e.js" type="module"></script><script src="scripts.1c3385254ff4c93c.js" defer></script><script src="main.83152501128b00e9.js" type="module"></script>
48+
<script src="runtime.8ef63094e52a66ba.js" type="module"></script><script src="polyfills.2696a6f9dc75535e.js" type="module"></script><script src="scripts.1c3385254ff4c93c.js" defer></script><script src="main.176ea1d72a9a7f7d.js" type="module"></script>
4949

5050
</body></html>

client/dist/main.83152501128b00e9.js client/dist/main.176ea1d72a9a7f7d.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fuxa",
3-
"version": "1.1.15-1382",
3+
"version": "1.1.15-1384",
44
"keywords": [],
55
"author": "frangoteam <[email protected]>",
66
"description": "Web-based Process Visualization (SCADA/HMI/Dashboard) software",

client/src/app/home/home.component.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { AlarmStatus, AlarmActionsType } from '../_models/alarm';
2424
import { GridsterConfig } from 'angular-gridster2';
2525

2626
import panzoom from 'panzoom';
27-
import { debounceTime, filter, last, map, takeUntil } from 'rxjs/operators';
27+
import { debounceTime, filter, map, takeUntil } from 'rxjs/operators';
2828
import { HtmlButtonComponent } from '../gauges/controls/html-button/html-button.component';
2929
// declare var panzoom: any;
3030

@@ -104,8 +104,7 @@ export class HomeComponent implements OnInit, AfterViewInit, OnDestroy {
104104
]).pipe(
105105
map(([connectionStatus, userProfile]) => (this.securityEnabled && !userProfile) ? false : !connectionStatus),
106106
takeUntil(this.destroy$),
107-
debounceTime(1000),
108-
last()
107+
debounceTime(1000)
109108
);
110109

111110
this.gaugesManager.onchange.pipe(

server/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fuxa-server",
3-
"version": "1.1.15-1382",
3+
"version": "1.1.15-1384",
44
"description": "Web-based Process Visualization (SCADA/HMI/Dashboard) software",
55
"main": "main.js",
66
"scripts": {

0 commit comments

Comments
 (0)