If I have a dropdown menu with options like "WORK", "RELEASE", and "OPEN", how can I make the second option, "RELEASE", read-only while allowing "WORK" and "OPEN" to be selected?
Here is a snippet of the template code:
<form [formGroup]="form">
<div class="flex">
<div class="col-3">
<div class="flex flex-row align-items-center">
<label class="col-6">Status</label>
<p-dropdown
[options]="workStatus"
[showClear]="true"
formControlName="workingStatus"
class="col-6">
</p-dropdown>
</div>