You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
631 B
25 lines
631 B
import { Tools } from '@/platform';
|
|
|
|
const PassOrNotFormater = (value) => {
|
|
if (Tools.isUndefinedOrNull(value)) {
|
|
return '';
|
|
}
|
|
if (value === 'PASSED') {
|
|
return {
|
|
componentType: 'QIcon',
|
|
attrs: { name: 'bi-check-circle', size: '20px', color: 'green' },
|
|
};
|
|
} else if (value === 'UN_PASSED') {
|
|
return {
|
|
componentType: 'QIcon',
|
|
attrs: { name: 'bi-x-circle', size: '20px', color: 'red' },
|
|
};
|
|
} else if (value === 'ERROR') {
|
|
return {
|
|
componentType: 'QIcon',
|
|
attrs: { name: 'bi-x-circle', size: '20px', color: 'red' },
|
|
};
|
|
}
|
|
};
|
|
|
|
export default PassOrNotFormater;
|
|
|