This commit is contained in:
kandrusyak
2023-09-25 20:32:55 +03:00
parent d130bdf40c
commit f86c8ad5ba
2 changed files with 2 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ export default {
person: { person: {
id: this.patient.id, id: this.patient.id,
}, },
medic_id: "a6195732-ac98-4f07-8916-4881eca69b7d", medic_id: this.$store.getters.getUserData.id,
}); });
if (event?.id) { if (event?.id) {
await this.getEvents(); await this.getEvents();

View File

@@ -89,7 +89,6 @@ export default {
return this.date?.format("D MMMM YYYY"); return this.date?.format("D MMMM YYYY");
}, },
inputShadowText() { inputShadowText() {
console.log(this.date, capitalizeFirstChar(this.date?.format("dddd")));
return this.date?.isValid() return this.date?.isValid()
? capitalizeFirstChar(this.date?.format("dddd")) ? capitalizeFirstChar(this.date?.format("dddd"))
: ""; : "";