Fix span size

This commit is contained in:
Robert
2023-10-24 10:11:50 +01:00
parent 0a75a0e835
commit 2405628bcc

View File

@@ -337,7 +337,9 @@ const UnmodelableMethodRow = forwardRef<
<MethodClassifications method={method} />
</ApiOrMethodRow>
</DataGridCell>
<DataGridCell gridColumn="span 4">Method already modeled</DataGridCell>
<DataGridCell gridColumn={`span ${viewState.showMultipleModels ? 5 : 4}`}>
Method already modeled
</DataGridCell>
</DataGridRow>
);
});