Created
July 11, 2018 20:31
-
-
Save jamesplease/6f9dd300c202deb0da008d578f66b3dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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