1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

add websockets suppor92

This commit is contained in:
MoonTestUse1
2025-01-05 02:41:15 +06:00
parent 33ba3f7811
commit c3c20f6e6f
4 changed files with 20 additions and 21 deletions

View File

@@ -9,20 +9,18 @@
<script setup lang="ts">
const { priority } = defineProps<{
priority: 'low' | 'medium' | 'high' | 'critical'
priority: 'low' | 'medium' | 'high'
}>();
const priorityClasses = {
low: 'bg-green-100 text-green-800',
medium: 'bg-yellow-100 text-yellow-800',
high: 'bg-orange-100 text-orange-800',
critical: 'bg-red-100 text-red-800'
high: 'bg-red-100 text-red-800'
};
const priorityLabels = {
low: 'Низкий',
medium: 'Средний',
high: 'Высокий',
critical: 'Критический'
high: 'Высокий'
};
</script>

View File

@@ -31,7 +31,6 @@
<option value="low">Низкий</option>
<option value="medium">Средний</option>
<option value="high">Высокий</option>
<option value="critical">Критический</option>
</select>
</div>

View File

@@ -48,7 +48,6 @@
<option value="low">Низкий</option>
<option value="medium">Средний</option>
<option value="high">Высокий</option>
<option value="critical">Критический</option>
</select>
</div>