Skip to content

Commit d5e91b9

Browse files
committed
history completely functional
1 parent 419194c commit d5e91b9

File tree

8 files changed

+260
-12
lines changed

8 files changed

+260
-12
lines changed

package-lock.json

Lines changed: 248 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/assets/style/colors.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ $graytwo: #C4CED4;
3939
$graythree: #A9B0BE;
4040

4141
$gqlpink: #E00198;
42-
$gqlpinktwo: rgb(190, 62, 158);
42+
$gqlpinktwo: #BE3E9E;
4343

4444
$grpcorange: #E6781E;

src/client/components/composer/NewRequest/GRPCBodyEntryForm.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class GRPCBodyEntryForm extends Component {
3838
});
3939
}
4040
}
41-
// add stream only for client or BIDIRECTIONAL streaming
41+
// add additional streams only for CLIENT or BIDIRECTIONAL streaming
4242
addStream() {
4343
const streamsArr = this.props.newRequestStreams.streamsArr;
4444
const streamContent = this.props.newRequestStreams.streamContent;

src/client/components/composer/NewRequest/GRPCBodyStream.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class GRPCBodyStream extends Component {
3131
let deleteStreamBtn;
3232
// grabs the query based on the stream id/number
3333
let streamContent = this.props.newRequestStreams.streamContent[this.props.stream.id];
34-
// if the none or the first stream query in the array
34+
// if none or the first stream query in the array
3535
if (this.props.stream.id === 1) {
3636
streamBody = (
3737
<textarea
@@ -45,7 +45,7 @@ class GRPCBodyStream extends Component {
4545
></textarea>
4646
)
4747
} else {
48-
// if subsequent stream query
48+
// for subsequent stream query
4949
streamBody = (
5050
<textarea
5151
value={streamContent}

src/client/components/composer/NewRequest/GRPCProtoEntryForm.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ class GRPCProtoEntryForm extends Component {
7676
...this.props.newRequestStreams,
7777
protoContent: value
7878
})
79+
document.getElementById("save-proto").innerText = 'Save Changes';
7980
}
8081

8182
// clears stream body query when proto file or selected service is changed

0 commit comments

Comments
 (0)