Skip to content

Commit de92e86

Browse files
committed
Minor improvement
1 parent 1adf41d commit de92e86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frame.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export class Frame {
3333

3434
getRow(): TableDataColumn[] {
3535
return [
36-
new TableDataColumn(`${Frame.getDateTime()} (${this.type})`, this.type),
36+
new TableDataColumn(`${Frame.getDateTime()} ${this.type}`, this.type),
3737
new TableDataColumn(`${this.slaveAddress} = 0x${Converters.byteToHex(this.slaveAddress!)}`, this.type),
3838
new TableDataColumn(FunctionCodes.getDescription(this.functionCode), FunctionCodes.isError(this.functionCode || 0) ? 'error' : this.type),
3939
new TableDataColumn(this.getDataLength().toString(), this.type),

0 commit comments

Comments
 (0)