Skip to content

Commit 0b8e038

Browse files
pfc
1 parent aa8ba9c commit 0b8e038

File tree

6 files changed

+51
-4
lines changed

6 files changed

+51
-4
lines changed

cmd/api/src/test/integration/harnesses/completenessharness.svg

Lines changed: 18 additions & 1 deletion
Loading

packages/javascript/bh-shared-ui/src/views/PrivilegeZones/Details/MembersList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ import { NodeIcon, SortableHeader } from '../../../components';
2121
import { InfiniteQueryFixedList, InfiniteQueryFixedListProps } from '../../../components/InfiniteQueryFixedList';
2222
import { SortOrder } from '../../../types';
2323
import { cn } from '../../../utils';
24-
import { getListHeight } from './utils';
2524
import { SelectedHighlight } from './SelectedHighlight';
25+
import { getListHeight } from './utils';
2626

2727
interface MembersListProps {
2828
listQuery: UseInfiniteQueryResult<{

packages/javascript/bh-shared-ui/src/views/PrivilegeZones/Details/SelectedHighlight.test.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
// Copyright 2025 Specter Ops, Inc.
2+
//
3+
// Licensed under the Apache License, Version 2.0
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
//
15+
// SPDX-License-Identifier: Apache-2.0
116
import { vi } from 'vitest';
217
import * as hooks from '../../../hooks';
318
import { render, screen } from '../../../test-utils';

packages/javascript/bh-shared-ui/src/views/PrivilegeZones/Details/SelectedHighlight.tsx

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
// Copyright 2025 Specter Ops, Inc.
2+
//
3+
// Licensed under the Apache License, Version 2.0
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
//
15+
// SPDX-License-Identifier: Apache-2.0
116
import { FC } from 'react';
217
import { usePZPathParams } from '../../../hooks';
318

packages/javascript/bh-shared-ui/src/views/PrivilegeZones/Details/SelectorsList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import { SortableHeader } from '../../../components';
2222
import { InfiniteQueryFixedList, InfiniteQueryFixedListProps } from '../../../components/InfiniteQueryFixedList';
2323
import { SortOrder } from '../../../types';
2424
import { cn } from '../../../utils';
25-
import { getListHeight } from './utils';
2625
import { SelectedHighlight } from './SelectedHighlight';
26+
import { getListHeight } from './utils';
2727

2828
const LoadingRow = (_: number, style: React.CSSProperties) => (
2929
<div

packages/javascript/bh-shared-ui/src/views/PrivilegeZones/Details/TagList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import { SortOrder } from '../../../types';
2424
import { cn } from '../../../utils';
2525
import { ZoneAnalysisIcon } from '../ZoneAnalysisIcon';
2626
import { itemSkeletons } from '../utils';
27-
import { isTag } from './utils';
2827
import { SelectedHighlight } from './SelectedHighlight';
28+
import { isTag } from './utils';
2929

3030
type TagListProps = {
3131
title: 'Zones' | 'Labels';

0 commit comments

Comments
 (0)