Skip to content

Commit

Permalink
Merge pull request vitessio#4878 from luky-pc/feature/add-space
Browse files Browse the repository at this point in the history
need a space before =
  • Loading branch information
rafael authored May 25, 2019
2 parents e08d0f1 + 89fe07b commit f41656f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
10 changes: 5 additions & 5 deletions web/vtctld2/src/app/shared/dialog/dialog-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export class DialogSettings {
public respText: string;
public errMsg: string;
public logText: string;
public open= false;
public dialogForm= true;
public dialogLog= false;
public pending= false;
public onCloseFunction= undefined;
public open = false;
public dialogForm = true;
public dialogLog = false;
public pending = false;
public onCloseFunction = undefined;

constructor(actionWord = '', dialogTitle = '', dialogSubtitle = '', errMsg = '') {
this.actionWord = actionWord;
Expand Down
16 changes: 8 additions & 8 deletions web/vtctld2/src/app/workflows/node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ export class Node {
public name: string;
public path: string; // Path to element Ex, “GrandparentID/ParentId/ID”.
public children: Node[];
public lastChanged= 0; // Time last changed in seconds.
public progress= 0; // Should be an int from 0-100 for percentage
public progressMsg= ''; // Ex. “34/256” “25%” “calculating”
public state= State.NOT_STARTED;
public display= Display.NONE;
public message= ''; // Instructions for user
public log= ''; // Log from command
public disabled= false; // Use for blocking further actions
public lastChanged = 0; // Time last changed in seconds.
public progress = 0; // Should be an int from 0-100 for percentage
public progressMsg = ''; // Ex. “34/256” “25%” “calculating”
public state = State.NOT_STARTED;
public display = Display.NONE;
public message = ''; // Instructions for user
public log = ''; // Log from command
public disabled = false; // Use for blocking further actions
public actions: Action[];

constructor(name: string, path: string, children: any) {
Expand Down

0 comments on commit f41656f

Please sign in to comment.