We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e974c4 commit 051f2d0Copy full SHA for 051f2d0
2 files changed
package.json
@@ -5,7 +5,7 @@
5
"printableName": "Cache Web Terminal",
6
"description": "Web-based terminal emulator for Caché administering.",
7
"author": "ZitRo",
8
- "version": "4.0.0-beta.16",
+ "version": "4.0.0-beta.17",
9
"gaID": "UA-83005064-2",
10
"releaseNumber": 26,
11
"scripts": {
src/client/js/output/Line.js
@@ -64,8 +64,8 @@ function getElement (gp, text) {
64
for (let i = 0; i < gp.length; i += 2) {
65
if (gp[i + 1].class)
66
classes.push(gp[i + 1].class);
67
- if (gp[i + 1].styles)
68
- styles.push(gp[i + 1].styles);
+ if (gp[i + 1].style)
+ styles.push(gp[i + 1].style);
69
if (gp[i + 1].attrs)
70
for (let a in gp[i + 1].attrs)
71
attrs.push([a, gp[i + 1].attrs[a]]);
0 commit comments