mirror of
https://github.com/inventree/InvenTree.git
synced 2025-08-06 20:11:37 +00:00
fix merge issues
This commit is contained in:
@@ -4,7 +4,6 @@ import {
|
||||
Badge,
|
||||
Button,
|
||||
Checkbox,
|
||||
Col,
|
||||
Container,
|
||||
Grid,
|
||||
Group,
|
||||
|
@@ -46,7 +46,9 @@ export function LocationColumn({
|
||||
let location = resolveItem(record, accessor);
|
||||
|
||||
if (!location) {
|
||||
return <Text italic>{t`No location set`}</Text>;
|
||||
return (
|
||||
<Text style={{ fontStyle: 'italic' }}>{t`No location set`}</Text>
|
||||
);
|
||||
}
|
||||
|
||||
return <Text>{location.name}</Text>;
|
||||
|
@@ -190,10 +190,10 @@ export default function BuildOutputTable({
|
||||
}
|
||||
|
||||
return (
|
||||
<Group position="left" noWrap>
|
||||
<Group justify="left" wrap="nowrap">
|
||||
<Text>{text}</Text>
|
||||
{record.batch && (
|
||||
<Text italic size="sm">
|
||||
<Text style={{ fontStyle: 'italic' }} size="sm">
|
||||
{t`Batch`}: {record.batch}
|
||||
</Text>
|
||||
)}
|
||||
@@ -225,7 +225,7 @@ export default function BuildOutputTable({
|
||||
record.results?.map((result: TestResultOverview) => {
|
||||
return (
|
||||
result && (
|
||||
<Group position="left" key={result.name} noWrap>
|
||||
<Group justify="left" key={result.name} wrap="nowrap">
|
||||
{result.result ? (
|
||||
<IconCircleCheck color="green" />
|
||||
) : (
|
||||
|
@@ -6,6 +6,7 @@ import { useNavigate } from 'react-router-dom';
|
||||
import { AddItemButton } from '../../components/buttons/AddItemButton';
|
||||
import { Thumbnail } from '../../components/images/Thumbnail';
|
||||
import { ApiEndpoints } from '../../enums/ApiEndpoints';
|
||||
import { ModelType } from '../../enums/ModelType';
|
||||
import { UserRoles } from '../../enums/Roles';
|
||||
import { companyFields } from '../../forms/CompanyForms';
|
||||
import {
|
||||
|
Reference in New Issue
Block a user