JavaScript UI Libraries & Blazor Components Suite – Smart UI Forums Kanban Kanban column scrollbar still showing after clearing data source to null array Reply To: Kanban column scrollbar still showing after clearing data source to null array

#101951
davout
Member

To me this looks like a bug…
In my code I am assigning a new array of objects directly to the ‘data source’  property.
Like…

<smart-kanban #kanban class="task-smart-kanban" id="kanban"
              [collapsible]="collapseColumns"
              [columns]="columns$ | async"
              [dataSource]="specialTasks$ | async"
              [taskDue]="true"
              [formatStringDate]="'dd MMM yyyy'"
              [taskUserIcon]="false"
              [taskActions]="true"
              (onDragEnd)="onDragEnd($event)"
              (onChange)="onChange($event)"
>
</smart-kanban>