vsavkin / angulardart-sample-app

A sample Web application built using AngularDart
Other
102 stars 27 forks source link

Add an item to call agenda does not work in Dartium #2

Closed bosskopp closed 10 years ago

bosskopp commented 10 years ago

caused by line 12 in models/angenda_item.dart:

bool get extPriority => done ? 4 : priority;

changing the typt to int resolves the issue:

int get extPriority => done ? 4 : priority;
vsavkin commented 10 years ago

Sorry, I've forgotten to close the issue.