Skip to content

Commit a5d6560

Browse files
Merge pull request #1 from AlexGodbehere/larger-value-window
enlarge value window
2 parents d1de077 + 60b0d67 commit a5d6560

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ test.png
99
.awcache
1010
.scannerwork
1111
screen*.png
12+
.idea

app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"mochatest": "mocha --require ts-node/register src/**/*.spec.ts"
1111
},
1212
"engines": {
13-
"node": "16"
13+
"node": "19"
1414
},
1515
"author": "",
1616
"license": "CC-BY-ND-4.0",

app/src/components/Sidebar/CodeDiff/style.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ export const style = (theme: Theme) => {
2424
},
2525
codeWrapper: {
2626
display: 'flex',
27-
maxHeight: '15em',
2827
overflow: 'auto',
2928
backgroundColor: `${codeBlockColors.background}`,
3029
},

app/src/components/Sidebar/ValueRenderer/ValueRenderer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class ValueRenderer extends React.Component<Props, State> {
8383
}
8484

8585
public render() {
86-
return <div style={{ padding: '0px 0px 8px 0px', width: '100%' }}>
86+
return <div style={{ padding: '0px 0px 8px 0px', width: '100%', height: '100%'}}>
8787
{this.props.message?.payload?.decoder === Decoder.SPARKPLUG && "Decoded SparkplugB"}
8888
{this.renderValue()}
8989
</div>

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"postinstall": "yarn build"
1313
},
1414
"engines": {
15-
"node": "16"
15+
"node": "19"
1616
},
1717
"author": "",
1818
"license": "CC-BY-ND-4.0",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "Explore your message queues",
55
"main": "dist/src/electron.js",
66
"engines": {
7-
"node": "16"
7+
"node": "19"
88
},
99
"scripts": {
1010
"start": "electron .",

0 commit comments

Comments
 (0)