mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 13:53:34 +00:00
[PM-9595] Fix owner / folder selects expanding out of container (#10493)
This commit is contained in:
@@ -17,12 +17,8 @@
|
|||||||
<bit-label>{{ "itemName" | i18n }}</bit-label>
|
<bit-label>{{ "itemName" | i18n }}</bit-label>
|
||||||
<input bitInput formControlName="name" />
|
<input bitInput formControlName="name" />
|
||||||
</bit-form-field>
|
</bit-form-field>
|
||||||
<div class="tw-flex tw-flex-wrap tw-gap-1">
|
<div class="tw-grid tw-grid-cols-2 tw-gap-1">
|
||||||
<bit-form-field
|
<bit-form-field *ngIf="showOwnership" [disableMargin]="!showCollectionsControl">
|
||||||
class="tw-flex-1"
|
|
||||||
*ngIf="showOwnership"
|
|
||||||
[disableMargin]="!showCollectionsControl"
|
|
||||||
>
|
|
||||||
<bit-label>{{ "owner" | i18n }}</bit-label>
|
<bit-label>{{ "owner" | i18n }}</bit-label>
|
||||||
<bit-select formControlName="organizationId">
|
<bit-select formControlName="organizationId">
|
||||||
<bit-option
|
<bit-option
|
||||||
@@ -37,7 +33,10 @@
|
|||||||
></bit-option>
|
></bit-option>
|
||||||
</bit-select>
|
</bit-select>
|
||||||
</bit-form-field>
|
</bit-form-field>
|
||||||
<bit-form-field class="tw-flex-1" [disableMargin]="!showCollectionsControl">
|
<bit-form-field
|
||||||
|
[class.tw-col-span-2]="!showOwnership"
|
||||||
|
[disableMargin]="!showCollectionsControl"
|
||||||
|
>
|
||||||
<bit-label>{{ "folder" | i18n }}</bit-label>
|
<bit-label>{{ "folder" | i18n }}</bit-label>
|
||||||
<bit-select formControlName="folderId">
|
<bit-select formControlName="folderId">
|
||||||
<bit-option
|
<bit-option
|
||||||
|
|||||||
Reference in New Issue
Block a user