This commit is contained in:
@@ -29,6 +29,9 @@ todo: many customer service request translations keys are not translated:
|
|||||||
"CustomerServiceRequestStatusDeclined": "Declined",
|
"CustomerServiceRequestStatusDeclined": "Declined",
|
||||||
"CustomerServiceRequestStatusOpen": "Open",
|
"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?
|
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
|
see CSR form for example
|
||||||
|
|
||||||
|
|||||||
@@ -22,10 +22,10 @@
|
|||||||
:color="priorityColor()"
|
:color="priorityColor()"
|
||||||
:item-color="priorityColor()"
|
:item-color="priorityColor()"
|
||||||
v-model="obj.priority"
|
v-model="obj.priority"
|
||||||
|
readonly
|
||||||
:items="selectLists.priorities"
|
:items="selectLists.priorities"
|
||||||
item-text="name"
|
item-text="name"
|
||||||
item-value="id"
|
item-value="id"
|
||||||
readonly
|
|
||||||
:label="$ay.t('CustomerServiceRequestPriority')"
|
:label="$ay.t('CustomerServiceRequestPriority')"
|
||||||
ref="priority"
|
ref="priority"
|
||||||
data-cy="priority"
|
data-cy="priority"
|
||||||
@@ -37,6 +37,15 @@
|
|||||||
</template></v-select
|
</template></v-select
|
||||||
>
|
>
|
||||||
</v-col>
|
</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-col cols="12" sm="6" lg="4" xl="3">
|
||||||
<v-select
|
<v-select
|
||||||
v-model="obj.status"
|
v-model="obj.status"
|
||||||
|
|||||||
Reference in New Issue
Block a user