I have a lightning datatable, and I have a problem. If I edit the bottom column, the values is overlap on the table Steps: click on editIcon on botton column (OK), click on editIcon on other value of botton column (the value is overlap)
<lightning:datatable
aura:id="objectDataTable"
columns="{! v.columnsObject }"
data="{! v.objectList }"
keyField="Id"
hideCheckboxColumn="true"
onsort="{!c.updateColumnSorting}"
sortedBy="{!v.sortedBy}"
sortedDirection="{!v.sortedDirection}"
onsave ="{!c.onSave}"
The value is overlaping the table

In standard table, a scroll appear and value not overlap.

Thanks