1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

Added canceled tooltip for projects listing

This commit is contained in:
Ken Hoes 2016-07-18 10:51:22 -04:00
parent 3b926c36d9
commit 7c34b2d809

View File

@ -75,6 +75,9 @@ export default
case 'missing': case 'missing':
result = 'Missing. Click for details'; result = 'Missing. Click for details';
break; break;
case 'canceled':
result = 'Canceled. Click for details';
break;
} }
return result; return result;
}; };