Fixing flag display

This commit is contained in:
Jeff Avallone 2014-12-17 15:28:04 -05:00
parent f93388dec0
commit 020feae951
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ export default {
setup() {
var flagsStr;
if (this.flags) {
flagsStr = this.flags.textValue;
if (this.properties.flags) {
flagsStr = this.properties.flags.textValue;
} else {
flagsStr = '';
}