Fix whitespace

This commit is contained in:
mabashian
2019-09-10 14:28:58 -04:00
committed by Ryan Petrello
parent 611f163289
commit 8a29276a7d

View File

@@ -55,8 +55,8 @@ export default {
}], }],
resolve: { resolve: {
rhCreds: ['Rest', 'GetBasePath', function(Rest, GetBasePath) { rhCreds: ['Rest', 'GetBasePath', function(Rest, GetBasePath) {
Rest.setUrl(`${GetBasePath('settings')}system/`); Rest.setUrl(`${GetBasePath('settings')}system/`);
return Rest.get() return Rest.get()
.then(({data}) => { .then(({data}) => {
const rhCreds = {}; const rhCreds = {};
if (data.REDHAT_USERNAME && data.REDHAT_USERNAME !== "") { if (data.REDHAT_USERNAME && data.REDHAT_USERNAME !== "") {
@@ -71,6 +71,6 @@ export default {
}).catch(() => { }).catch(() => {
return {}; return {};
}); });
}] }]
} }
}; };