This commit is contained in:
@@ -43,6 +43,8 @@ todo: Localize this message or get rid of it, it's annoying and possibly useless
|
|||||||
|
|
||||||
|
|
||||||
##########################
|
##########################
|
||||||
|
todo: ops backup file list not in order by date, seems to be random or something, I want newest at top oldest at bottom
|
||||||
|
|
||||||
todo: add method to continue on to requested url when a login needs to happen
|
todo: add method to continue on to requested url when a login needs to happen
|
||||||
(like capture the requested url and if found after login go to it)
|
(like capture the requested url and if found after login go to it)
|
||||||
todo: clean out leftover openurl stuff from old system
|
todo: clean out leftover openurl stuff from old system
|
||||||
|
|||||||
@@ -350,12 +350,22 @@ export default {
|
|||||||
},
|
},
|
||||||
showAttachReportId() {
|
showAttachReportId() {
|
||||||
//TODO: Many others as well, but for now until those objects exist
|
//TODO: Many others as well, but for now until those objects exist
|
||||||
return this.obj.eventType != 27; //general notification has no tags
|
switch (this.obj.eventType) {
|
||||||
|
case 27: //General notification
|
||||||
//return true;
|
case 20: //backup status
|
||||||
|
return false;
|
||||||
|
default:
|
||||||
|
return true;
|
||||||
|
}
|
||||||
},
|
},
|
||||||
showTags() {
|
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: {
|
methods: {
|
||||||
|
|||||||
Reference in New Issue
Block a user