Update IssueItem.vue

This commit is contained in:
Muhsin Keloth
2024-05-18 12:34:30 +05:30
parent 64324d239e
commit 7767c83206
@@ -3,10 +3,10 @@ import { format } from 'date-fns';
import UserAvatarWithName from 'dashboard/components/widgets/UserAvatarWithName.vue';
import { computed } from 'vue';
const priorityMap = {
0: 'Low',
1: 'Medium',
2: 'High',
3: 'Urgent',
0: 'Urgent',
1: 'High',
2: 'Medium',
3: 'Low',
};
const props = defineProps({
issue: {