forked from DSpace/dspace-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DSpace DSpace#1176 - Browse by Author serious issues
- Loading branch information
root
authored and
root
committed
May 21, 2024
1 parent
71bc1ad
commit 4359361
Showing
5 changed files
with
17 additions
and
3 deletions.
There are no files selected for viewing
7 changes: 5 additions & 2 deletions
7
src/app/shared/starts-with/text/starts-with-text.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
<form class="w-100" [formGroup]="formData" (ngSubmit)="submitForm(formData.value)"> | ||
<div class="mb-3"> | ||
<div class="row"> | ||
<div class="form-group input-group col-8 col-sm-12 col-md-6"> | ||
<input class="form-control" [attr.aria-label]="'browse.startsWith.input' | translate" placeholder="{{'browse.startsWith.type_text' | translate}}" type="text" name="startsWith" formControlName="startsWith" [value]="getStartsWith()" /> | ||
<div class="form-group input-group col-sm-12 col-md-6 col-auto"> | ||
<input class="form-control" [attr.aria-label]="'browse.startsWith.input' | translate" placeholder="{{'browse.search-form.placeholder' | translate}}" type="text" name="startsWith" formControlName="startsWith" [value]="getStartsWith()" /> | ||
<span class="input-group-append"> | ||
<button class="btn btn-primary" type="submit"><i class="fas fa-book-open"></i> {{'browse.startsWith.submit' | translate}}</button> | ||
</span> | ||
</div> | ||
</div> | ||
<small class="text-muted">{{'browse.startsWith.type_text' | translate}}</small> | ||
</div> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,7 @@ | |
background-color: var(--bs-input-bg); | ||
color: var(--bs-input-color); | ||
} | ||
|
||
.form-group { | ||
margin-bottom: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters