feat: update responsibleGroup type to string array and initialize in workflow steps
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 7s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 7s
This commit is contained in:
parent
28395b4f80
commit
56a63185a1
5 changed files with 215 additions and 84 deletions
|
|
@ -2,7 +2,7 @@ import { ref } from 'vue';
|
|||
import { defineStore } from 'pinia';
|
||||
import { api } from 'src/boot/axios';
|
||||
import { PaginationResult } from 'src/types';
|
||||
import { WorkflowTemplate, WorkflowTemplatePayload, Group } from './types';
|
||||
import { Group, WorkflowTemplate, WorkflowTemplatePayload } from './types';
|
||||
import { Status } from '../types';
|
||||
|
||||
export const useWorkflowTemplate = defineStore('workflow-store', () => {
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ export type WorkflowTemplatePayload = {
|
|||
|
||||
export type WorkflowUserInTable = {
|
||||
name: string;
|
||||
responsibleGroup: Group[];
|
||||
responsibleGroup: string[];
|
||||
responsiblePerson: {
|
||||
id: string;
|
||||
selectedImage?: string;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue