Edit a multi select components field:

  • Options include ADD, REPLACE, REMOVE, or REMOVE_ALL for bulk edits.
  • To clear, use the REMOVE_ALL option with an empty components array.
interface JiraMultiSelectComponentField {
    bulkEditMultiSelectFieldOption:
        | "REPLACE"
        | "ADD"
        | "REMOVE"
        | "REMOVE_ALL";
    components: JiraComponentField[];
    fieldId: string;
}

Properties

bulkEditMultiSelectFieldOption:
    | "REPLACE"
    | "ADD"
    | "REMOVE"
    | "REMOVE_ALL"
components: JiraComponentField[]
fieldId: string