We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1adf41d commit de92e86Copy full SHA for de92e86
src/frame.ts
@@ -33,7 +33,7 @@ export class Frame {
33
34
getRow(): TableDataColumn[] {
35
return [
36
- new TableDataColumn(`${Frame.getDateTime()} (${this.type})`, this.type),
+ new TableDataColumn(`${Frame.getDateTime()} ${this.type}`, this.type),
37
new TableDataColumn(`${this.slaveAddress} = 0x${Converters.byteToHex(this.slaveAddress!)}`, this.type),
38
new TableDataColumn(FunctionCodes.getDescription(this.functionCode), FunctionCodes.isError(this.functionCode || 0) ? 'error' : this.type),
39
new TableDataColumn(this.getDataLength().toString(), this.type),
0 commit comments