modificar el valor de un campo en el evento load con scriptrunner cloud jira cloud?

stephen
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 17, 2025

Buenas tardes, estoy intentando modificar el valor del campo descripción o de un campo pesonalizado con scriptrunner behaviour cloud jira cloud pero no lo hace, es posible?

aqui el código: 

 

document.addEventListener("DOMContentLoaded", function() {
    // Encuentra el campo de descripción por su id
    const descriptionField = document.querySelector("#summary");

    // Verificar si el campo de descripción existe y es un textarea
    if (descriptionField && descriptionField instanceof HTMLTextAreaElement) {
        // Si el campo está vacío, asignar "Hola Mundo"
        if (!descriptionField.value.trim()) {
            descriptionField.value = "Hola Mundo";
        }
    }
});

0 answers

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
PREMIUM
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events