This commit is contained in:
2020-12-22 17:32:49 +00:00
parent 048fd308c7
commit 450c1a44b1
2 changed files with 6 additions and 12 deletions

View File

@@ -5,6 +5,8 @@
MISC ITEMS THAT CAME UP
todo: time picker no way to select NOW
todo: time picker defaults to 12:00am when date is selected, how about current time instead?
todo: date picker component add drop down quick pick:
i.e. Hour from now, Day from now, Week from now, Month from now.
todo: date and time defaults for appointments and shit
@@ -74,6 +76,7 @@ todo: make new review from a review for the same object (new menu option in revi
todo: make a new review from review list
todo: not able to make a new review from review list when it's just a direct viewing of list
or should I add an object selector? NO
todo: overdue warning / display
EACH OBJECT DEV CYCLE:

View File

@@ -119,10 +119,7 @@
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
<gz-tag-picker
v-model="obj.tags"
:readonly="
formState.readOnly ||
(!selfAssigned && !currentUserIsASupervisor)
"
:readonly="formState.readOnly"
ref="tags"
data-cy="tags"
:error-messages="form().serverErrors(this, 'tags')"
@@ -149,20 +146,14 @@
:ayaId="obj.id"
ref="wiki"
v-model="obj.wiki"
:readonly="
formState.readOnly ||
(!selfAssigned && !currentUserIsASupervisor)
"
:readonly="formState.readOnly"
@input="fieldValueChanged('wiki')"
></gz-wiki
></v-col>
<v-col v-if="form().showMe(this, 'Attachments') && obj.id" cols="12">
<gz-attachments
:readonly="
formState.readOnly ||
(!selfAssigned && !currentUserIsASupervisor)
"
:readonly="formState.readOnly"
:ayaType="ayaType"
:ayaId="obj.id"
></gz-attachments