• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mendersoftware / mender-server / 1501783099

18 Oct 2024 07:49AM UTC coverage: 72.799%. First build
1501783099

push

gitlab-ci

web-flow
Merge pull request #101 from mineralsfree/MEN-7568

feat: tenant list added

4408 of 6393 branches covered (68.95%)

Branch coverage included in aggregate %.

88 of 182 new or added lines in 10 files covered. (48.35%)

42624 of 58212 relevant lines covered (73.22%)

28.08 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/frontend/src/js/components/tenants/expanded-tenant.tsx
1
// Copyright 2024 Northern.tech AS
2
//
3
//    Licensed under the Apache License, Version 2.0 (the "License");
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
import { Drawer } from '@mui/material';
15

16
interface ExpandedTenantProps {
17
  tenantId: string;
18
  onCloseClick: () => void;
19
}
20

NEW
21
export const ExpandedTenant = (props: ExpandedTenantProps) => {
×
NEW
22
  const { tenantId, onCloseClick } = props;
×
NEW
23
  return (
×
24
    <Drawer onClose={onCloseClick} open={true} PaperProps={{ style: { minWidth: '67vw' } }} anchor="right">
25
      Information for tenant with id {tenantId}
26
    </Drawer>
27
  );
28
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc