Skip to content

Commit

Permalink
fix: modbus tag type
Browse files Browse the repository at this point in the history
  • Loading branch information
unocelli committed May 5, 2024
1 parent 651749b commit 82ba3ec
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@
</div>
</div>
</app-root>
<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.606e469775b86e2b.js" type="module"></script>
<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.1c359d73932872f3.js" type="module"></script>

</body></html>

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fuxa",
"version": "1.1.19-1587",
"version": "1.1.19-1588",
"keywords": [],
"author": "frangoteam <4frango@gmail.com>",
"description": "Web-based Process Visualization (SCADA/HMI/Dashboard) software",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Component, EventEmitter, OnInit, Inject, Output, OnDestroy } from '@angular/core';
import { Device, ModbusTagType, Tag, TagType } from '../../../_models/device';
import { Device, ModbusTagType, Tag } from '../../../_models/device';
import { AbstractControl, UntypedFormBuilder, UntypedFormGroup, ValidationErrors, ValidatorFn, Validators } from '@angular/forms';
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { TranslateService } from '@ngx-translate/core';
Expand All @@ -13,7 +13,7 @@ import { Subject, takeUntil } from 'rxjs';
export class TagPropertyEditModbusComponent implements OnInit, OnDestroy {
@Output() result = new EventEmitter<any>();
formGroup: UntypedFormGroup;
tagType = TagType;
tagType = ModbusTagType;
memAddress = {
'Coil Status (Read/Write 000001-065536)': '000000',
'Digital Inputs (Read 100001-165536)': '100000',
Expand Down
2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fuxa-server",
"version": "1.1.19-1587",
"version": "1.1.19-1588",
"description": "Web-based Process Visualization (SCADA/HMI/Dashboard) software",
"main": "main.js",
"scripts": {
Expand Down

0 comments on commit 82ba3ec

Please sign in to comment.