This commit is contained in:
2021-01-08 19:41:32 +00:00
parent e2c83e4303
commit 88b48d905d
2 changed files with 13 additions and 1 deletions

View File

@@ -29,6 +29,9 @@ todo: many customer service request translations keys are not translated:
"CustomerServiceRequestStatusDeclined": "Declined",
"CustomerServiceRequestStatusOpen": "Open",
todo: Date input shows higher than other components in forms
date only input read only format see CSR form created field
todo: if a menu item has no icon, can it be shown to the left and exclude the space taken up by the icon?
see CSR form for example

View File

@@ -22,10 +22,10 @@
:color="priorityColor()"
:item-color="priorityColor()"
v-model="obj.priority"
readonly
:items="selectLists.priorities"
item-text="name"
item-value="id"
readonly
:label="$ay.t('CustomerServiceRequestPriority')"
ref="priority"
data-cy="priority"
@@ -37,6 +37,15 @@
</template></v-select
>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<gz-date-picker
:label="$ay.t('Created')"
v-model="obj.dateRequested"
readonly
ref="dateRequested"
testId="dateRequested"
></gz-date-picker>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-select
v-model="obj.status"