Skip to content

Commit

Permalink
Merge pull request #2268 from stbychkov/fix/connected-label-typo
Browse files Browse the repository at this point in the history
Fixed typo in the connection status label
  • Loading branch information
stbychkov authored Jan 29, 2021
1 parent c257005 commit d965d4e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ describe("RpcServerStatusComponent", () => {

it("Shows connected title", () => {
const tooltip = clickableEl.injector.get(MatTooltip);
expect(tooltip.message).toEqual("Python service is connnected and running.");
expect(tooltip.message).toEqual("Python service is connected and running.");
});

it("Opens context menu when clicking ", () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class RpcServerStatusComponent implements OnDestroy {

public get title() {
if (this.connected) {
return "Python service is connnected and running.";
return "Python service is connected and running.";
} else {
return "Python service is currently disconnected. Click to take action.";
}
Expand Down

0 comments on commit d965d4e

Please sign in to comment.