1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

PM-25931 fixing bugs found by QA (#16472)

This commit is contained in:
Vijay Oommen
2025-09-18 11:03:00 -05:00
committed by GitHub
parent f04b24851c
commit 57705791db
5 changed files with 24 additions and 12 deletions

View File

@@ -30,7 +30,7 @@
</span>
}
</h3>
<p class="tw-mb-0">{{ description }}</p>
<p class="tw-mb-0 tw-font-semibold">{{ description }}</p>
@if (canSetupConnection) {
<button type="button" class="tw-mt-3" bitButton (click)="setupConnection()">

View File

@@ -13,15 +13,24 @@
<ng-container>
<bit-form-field>
<bit-label>{{ "url" | i18n }}</bit-label>
<input bitInput formControlName="url" />
<input
bitInput
type="text"
formControlName="url"
placeholder="https://<customer-id>.crowdstrike.com"
/>
</bit-form-field>
<bit-form-field>
<bit-label>{{ "bearerToken" | i18n }}</bit-label>
<input bitInput formControlName="bearerToken" />
<input bitInput type="text" formControlName="bearerToken" />
<bit-hint>{{ "apiKey" | i18n }}</bit-hint>
</bit-form-field>
<bit-form-field>
<bit-label>{{ "index" | i18n }}</bit-label>
<input bitInput formControlName="index" />
<input bitInput type="text" formControlName="index" />
<bit-hint>{{ "repositoryNameHint" | i18n }}</bit-hint>
</bit-form-field>
</ng-container>
}