mirror of
https://github.com/goharbor/harbor
synced 2025-04-16 15:58:56 +00:00
parent
b2fb33ba0d
commit
805e4aa4db
|
@ -32,7 +32,7 @@
|
||||||
<div class="form-group form-group-override">
|
<div class="form-group form-group-override">
|
||||||
<label for="realname" class="required form-group-label-override">{{'PROFILE.FULL_NAME' | translate}}</label>
|
<label for="realname" class="required form-group-label-override">{{'PROFILE.FULL_NAME' | translate}}</label>
|
||||||
<label for="realname" aria-haspopup="true" role="tooltip" class="tooltip tooltip-validation tooltip-md tooltip-bottom-left" [class.invalid]='getValidationState("realname")'>
|
<label for="realname" aria-haspopup="true" role="tooltip" class="tooltip tooltip-validation tooltip-md tooltip-bottom-left" [class.invalid]='getValidationState("realname")'>
|
||||||
<input type="text" name="realname" #fullNameInput="ngModel" [(ngModel)]="newUser.realname" required maxLengthExt="20" id="realname" size="30"
|
<input type="text" name="realname" #fullNameInput="ngModel" [(ngModel)]="newUser.realname" required maxLengthExt="80" id="realname" size="30"
|
||||||
(input)='handleValidation("realname", false)'
|
(input)='handleValidation("realname", false)'
|
||||||
(blur)='handleValidation("realname", true)'>
|
(blur)='handleValidation("realname", true)'>
|
||||||
<span class="tooltip-content">
|
<span class="tooltip-content">
|
||||||
|
|
|
@ -167,6 +167,7 @@ export class UserComponent implements OnInit, OnDestroy {
|
||||||
|
|
||||||
//Filter items by keywords
|
//Filter items by keywords
|
||||||
doFilter(terms: string): void {
|
doFilter(terms: string): void {
|
||||||
|
this.selectedRow = [];
|
||||||
this.currentTerm = terms;
|
this.currentTerm = terms;
|
||||||
this.originalUsers.then(users => {
|
this.originalUsers.then(users => {
|
||||||
if (terms.trim() === "") {
|
if (terms.trim() === "") {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user