I have tried using `ng-template' to display only the label but the checkbox still displays by default. How can I change this default behaviour?
Here's the code using ng-template
......
`
<p-multiSelect [options]="conditionList" formControlName="condition" defaultLabel="Select Conditions"
[showToggleAll]="false" scrollHeight="300px">
<ng-template let-condition pTemplate="item">
<div>{{condition.label}}</div>
</ng-template>
</p-multiSelect>`