Skip to content

Instantly share code, notes, and snippets.

@jamesplease
Created July 11, 2018 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesplease/6f9dd300c202deb0da008d578f66b3dd to your computer and use it in GitHub Desktop.
Save jamesplease/6f9dd300c202deb0da008d578f66b3dd to your computer and use it in GitHub Desktop.
let statusTooltip;
if (processStatus.processing) {
statusTooltip = 'Processing';
} else if (processStatus.processed) {
statusTooltip = 'Processed';
} else if (processStatus.error) {
statusTooltip = 'Error';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment