Set a minimum width of 200px for progress components in both MjLogsTable.js and TaskLogsTable.js to ensure consistent display and prevent them from becoming too narrow when table resizes.
@@ -462,6 +462,7 @@ const LogsTable = () => {
percent={text ? parseInt(text.replace('%', '')) : 0}
showInfo={true}
aria-label='drawing progress'
+ style={{ minWidth: '200px' }}
/>
}
</div>
@@ -395,6 +395,7 @@ const LogsTable = () => {
aria-label='task progress'
)