export function set_report_attribute(report_uuid, attribute, value, reload) {
    return fetch_server_api("post", `report/${report_uuid}/attribute/${attribute}`, {
        [attribute]: value,
    }).then(reload)
}