fix syntax error in tokens list controller

This commit is contained in:
John Mitchell
2018-05-10 14:17:38 -04:00
parent 8a2c3ce716
commit 97614892c6

View File

@@ -44,7 +44,9 @@ function ListTokensController (
} else if (str === 'Write') { } else if (str === 'Write') {
return vm.strings.get('add.SCOPE_WRITE_LABEL'); return vm.strings.get('add.SCOPE_WRITE_LABEL');
} }
}
return undefined;
};
vm.getLastUsed = token => { vm.getLastUsed = token => {
const lastUsed = _.get(token, 'last_used'); const lastUsed = _.get(token, 'last_used');