This commit is contained in:
@@ -350,12 +350,22 @@ export default {
|
||||
},
|
||||
showAttachReportId() {
|
||||
//TODO: Many others as well, but for now until those objects exist
|
||||
return this.obj.eventType != 27; //general notification has no tags
|
||||
|
||||
//return true;
|
||||
switch (this.obj.eventType) {
|
||||
case 27: //General notification
|
||||
case 20: //backup status
|
||||
return false;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
},
|
||||
showTags() {
|
||||
return this.obj.eventType != 27; //general notification has no tags
|
||||
switch (this.obj.eventType) {
|
||||
case 27: //General notification
|
||||
case 20: //backup status
|
||||
return false;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
||||
Reference in New Issue
Block a user