feat: enable responsible user filtering and enhance button states for improved UX
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 10s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 10s
This commit is contained in:
parent
5ec924fe14
commit
4d8eebdd04
2 changed files with 3 additions and 0 deletions
|
|
@ -143,6 +143,7 @@ async function openRequestListDialog() {
|
|||
page: 1,
|
||||
pageSize: 999,
|
||||
incomplete: true,
|
||||
responsibleOnly: true,
|
||||
});
|
||||
|
||||
if (ret) {
|
||||
|
|
|
|||
|
|
@ -153,6 +153,7 @@ watch(
|
|||
@click="prev"
|
||||
/>
|
||||
<MainButton
|
||||
:disabled="selected.length === 0"
|
||||
icon="mdi-check"
|
||||
color="207 96% 32%"
|
||||
solid
|
||||
|
|
@ -164,6 +165,7 @@ watch(
|
|||
</MainButton>
|
||||
<SaveButton
|
||||
v-if="step === Step.Configure"
|
||||
:disabled="form.responsibleUserId === ''"
|
||||
id="btn-save"
|
||||
solid
|
||||
@click="$emit('submit', { form, selected })"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue