1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-23 07:09:43 +02:00

Replace showNotificaiton() calls

This commit is contained in:
sauls8t 2018-04-23 12:46:34 +01:00
parent 9235c183c5
commit 74e9699e1e
4 changed files with 9 additions and 15 deletions

View file

@ -177,7 +177,6 @@ export default Component.extend(SectionMixin, NotifierMixin, {
}, function (error) {
self.set('busy', false);
self.set('authenticated', false);
self.showNotification("Unable to fetch repositories");
console.log(error); // eslint-disable-line no-console
});
},
@ -202,7 +201,7 @@ export default Component.extend(SectionMixin, NotifierMixin, {
}, function (error) {
self.set('busy', false);
self.set('authenticated', false);
self.showNotification("Unable to fetch owners");
console.log("Unable to fetch owners"); // eslint-disable-line no-console
console.log(error); // eslint-disable-line no-console
});