Update Ember to 3.1

This commit is contained in:
2018-04-16 13:42:08 +02:00
parent e009caaf25
commit b09f19f399
156 changed files with 10149 additions and 16972 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
import Ember from 'ember';
import Component from '@ember/component';
export default Ember.Component.extend({
export default Component.extend({
tagName: 'ul',
classNames: ['proposal-list'],
@@ -8,7 +8,7 @@ export default Ember.Component.extend({
actions: {
confirm(proposalId) {
if (this.get('contractInteractionEnabled')) {
if (this.contractInteractionEnabled) {
this.sendAction('confirmAction', proposalId);
} else {
window.alert('Only members can vote on proposals. Please ask someone to set you up.');