Fixed missing icons in calculation errors

This commit is contained in:
Stefan Zermatten
2021-07-12 18:00:21 +02:00
parent 80ba44a28f
commit 822fa4619f

View File

@@ -51,11 +51,11 @@ export default {
methods: {
errorIcon(type){
if (type === 'subsitution'){
return 'info';
return 'mdi-information';
} else if (type === 'evaluation'){
return 'warning';
return 'mdi-alert-circle';
} else {
return 'error'
return 'mdi-alert'
}
},
errorColor(type){