Skip to content

Commit

Permalink
[frontend] Addressed merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
Bonsai8863 committed Jun 17, 2024
1 parent e748b3e commit fbf866e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -712,12 +712,12 @@ const StixCoreRelationshipCreationFromEntity: FunctionComponent<StixCoreRelation
|| allowedRelationshipTypes.length === 0
|| allowedRelationshipTypes.includes('stix-core-relationship')
|| allowedRelationshipTypes.includes(n),
resolveRelationsTypes(
fromEntities[0].entity_type,
toEntities[0].entity_type,
schema?.schemaRelationsTypesMapping ?? new Map(),
),
));
resolveRelationsTypes(
fromEntities[0].entity_type,
toEntities[0].entity_type,
schema?.schemaRelationsTypesMapping ?? new Map(),
),
));
return (
<>
<div className={classes.header}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import StixDomainObjectAttackPatternsKillChainLines from './StixDomainObjectAtta
import StixDomainObjectAttackPatternsKillChainMatrix from './StixDomainObjectAttackPatternsKillChainMatrix';
import Filters from '../lists/Filters';
import {
StixDomainObjectAttackPatternsKillChainStixCoreRelationshipsQuery$data,
StixDomainObjectAttackPatternsKillChainStixCoreRelationshipsQuery$variables,
StixDomainObjectAttackPatternsKillChainStixCoreRelationshipsQuery as TriggerQuery,
} from './__generated__/StixDomainObjectAttackPatternsKillChainStixCoreRelationshipsQuery.graphql';
Expand All @@ -27,6 +26,7 @@ import {
StixDomainObjectAttackPatternsKillChain_triggers$data,
} from './__generated__/StixDomainObjectAttackPatternsKillChain_triggers.graphql';
import { CreateRelationshipContext } from '../menus/CreateRelationshipContextProvider';
import StixCoreObjectsExports from '../stix_core_objects/StixCoreObjectsExports';

const StyledParameters = styled('div')({
marginBottom: 20,
Expand Down Expand Up @@ -506,7 +506,7 @@ export const stixDomainObjectAttackPatternsKillChainStixCoreRelationshipsTrigger
`;

interface StixDomainObjectAttackPatternsKillChainProps {
triggerData: StixDomainObjectAttackPatternsKillChainStixCoreRelationshipsQuery$data,
triggerData: FragmentKey,
componentProps: StixDomainObjectAttackPatternsKillChainComponentProps,
}

Expand Down

0 comments on commit fbf866e

Please sign in to comment.