Hi,
this is not possible form UI ๐
You have to replace content with e.g. white space. I think this is bug.
But you can do it using job api !
Below example in PowerShell, just reaplce:
$body = @'
{
"job_id": 123456789,
"new_settings": {
"description": ""
}
}
'@
$token = 'my123adb123token-2'
$wspace ='https://adb-123456.1.azuredatabricks.net'
$api = '/api/2.1/jobs/update'
$uri = $wspace + $api
$headers = @{
Authorization="Bearer $token"
}
$response = Invoke-WebRequest -Method POST -Uri $uri -Headers $headers -Body $body -ContentType "application/json"