mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
Fix member and group page container
This commit is contained in:
@@ -1,3 +1,4 @@
|
|||||||
|
<div class="container page-content">
|
||||||
<div class="page-header d-flex">
|
<div class="page-header d-flex">
|
||||||
<h1>{{ "groups" | i18n }}</h1>
|
<h1>{{ "groups" | i18n }}</h1>
|
||||||
<div class="ml-auto d-flex">
|
<div class="ml-auto d-flex">
|
||||||
@@ -75,3 +76,4 @@
|
|||||||
</ng-container>
|
</ng-container>
|
||||||
<ng-template #addEdit></ng-template>
|
<ng-template #addEdit></ng-template>
|
||||||
<ng-template #usersTemplate></ng-template>
|
<ng-template #usersTemplate></ng-template>
|
||||||
|
</div>
|
||||||
|
|||||||
@@ -49,7 +49,7 @@ export class GroupsComponent implements OnInit {
|
|||||||
) {}
|
) {}
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
this.route.parent.parent.params.subscribe(async (params) => {
|
this.route.parent.params.subscribe(async (params) => {
|
||||||
this.organizationId = params.organizationId;
|
this.organizationId = params.organizationId;
|
||||||
const organization = await this.organizationService.get(this.organizationId);
|
const organization = await this.organizationService.get(this.organizationId);
|
||||||
if (organization == null || !organization.useGroups) {
|
if (organization == null || !organization.useGroups) {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<div class="page-header">
|
<div class="container page-content">
|
||||||
<h1>{{ "people" | i18n }}</h1>
|
<div class="page-header d-flex">
|
||||||
<div class="mt-2 d-flex">
|
<h1>{{ "members" | i18n }}</h1>
|
||||||
|
<div class="ml-auto d-flex">
|
||||||
<div class="btn-group btn-group-sm" role="group">
|
<div class="btn-group btn-group-sm" role="group">
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@@ -291,3 +292,4 @@
|
|||||||
<ng-template #bulkStatusTemplate></ng-template>
|
<ng-template #bulkStatusTemplate></ng-template>
|
||||||
<ng-template #bulkConfirmTemplate></ng-template>
|
<ng-template #bulkConfirmTemplate></ng-template>
|
||||||
<ng-template #bulkRemoveTemplate></ng-template>
|
<ng-template #bulkRemoveTemplate></ng-template>
|
||||||
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user