diff --git a/src/assets/icons/sort_word.svg b/src/assets/icons/sort_word.svg
new file mode 100644
index 0000000..5598095
--- /dev/null
+++ b/src/assets/icons/sort_word.svg
@@ -0,0 +1,5 @@
+
diff --git a/src/pages/newCalendar/components/CalendarOpenSidebar.vue b/src/pages/newCalendar/components/CalendarOpenSidebar.vue
index 76df06b..1259a10 100644
--- a/src/pages/newCalendar/components/CalendarOpenSidebar.vue
+++ b/src/pages/newCalendar/components/CalendarOpenSidebar.vue
@@ -53,10 +53,11 @@
q-icon(name="app:icon-search", size="16px", style="color: var(--font-grey-color)")
q-btn.btn.ml-2(
@click="sortPerson(elem.data)",
- icon="app:sort-number",
+ style="color: var(--font-grey-color); background: var(--bg-light-grey)"
:style="{width: '32px', height: '32px'}",
padding="0"
)
+ img(:src="sort_word")
.flex.items-center.justify-between.font-medium.text-smm.h-10.py-2.cursor-pointer(
@click="checkAll(elem.data)"
)
@@ -78,6 +79,7 @@
diff --git a/src/pages/newCalendar/utils/calendarConfig.js b/src/pages/newCalendar/utils/calendarConfig.js
index fa2c1e7..1bf8acd 100644
--- a/src/pages/newCalendar/utils/calendarConfig.js
+++ b/src/pages/newCalendar/utils/calendarConfig.js
@@ -192,9 +192,9 @@ export const patientData = {
},
],
statuses: [
- { name: "Отказ", icon: rejected, check: false },
{ name: "Не принят", icon: not_accepted, check: true },
- { name: "На приеме", icon: reception, check: false },
{ name: "Принят", icon: accepted, check: false },
+ { name: "Отказ", icon: rejected, check: false },
+ { name: "На приеме", icon: reception, check: false },
],
};
diff --git a/tailwind.config.js b/tailwind.config.js
index 60c336a..515f369 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -30,6 +30,7 @@ module.exports = {
"7xl": ["40px", { lineHeight: "54px" }],
},
gap: {
+ "2px": "2px",
"5px": "5px",
"6px": "6px",
"7px": "7px",