replaced most ti-arrow*

This commit is contained in:
dakkar 2024-06-22 12:36:09 +01:00
parent db0c17dd3e
commit 4910c1f030
7 changed files with 20 additions and 10 deletions

View file

@ -665,8 +665,8 @@ const rolePermission = computed({
const q = ref('');
function getPriorityIcon(option) {
if (option.priority === 2) return 'ph-arrow-up ph-bold ph-lg';
if (option.priority === 1) return 'ph-arrow-up ph-bold ph-lg';
if (option.priority === 2) return 'ti ti-arrows-up';
if (option.priority === 1) return 'ti ti-arrow-narrow-up';
return 'ph-circle ph-bold ph-lg';
}