Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
479 B

import { Controller } from '@hotwired/stimulus'
export default class extends Controller {
updateProfitStatusOptions(event) {
const providerType = event.target.value;
const profitStatusSelect = document.getElementById('organisation-profit-status-field');
if (profitStatusSelect) {
profitStatusSelect.disabled = false;
if (providerType === "LA") {
profitStatusSelect.value = "3";
profitStatusSelect.disabled = true;
}
}
}
}