CSS updates
This commit is contained in:
parent
8a2033740e
commit
301ea99abe
@ -1,9 +1,10 @@
|
||||
@use 'common-mixins';
|
||||
|
||||
.mat-mdc-select {
|
||||
padding: 0 11px;
|
||||
padding: 0 calc(var(--iqser-inputs-height) - 25px);
|
||||
box-sizing: border-box;
|
||||
--mat-select-trigger-text-line-height: 36px;
|
||||
--mat-select-trigger-text-line-height: var(--iqser-inputs-height);
|
||||
--mat-select-trigger-text-size: var(--iqser-inputs-font-size);
|
||||
}
|
||||
|
||||
.mat-mdc-select-panel {
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
:host {
|
||||
display: block;
|
||||
display: contents;
|
||||
}
|
||||
|
||||
mat-icon.disabled {
|
||||
|
||||
@ -57,7 +57,10 @@ export abstract class PaginatedEntitiesService<
|
||||
}
|
||||
|
||||
updateSearchQueryAndReload(value: string): Observable<Class[]> {
|
||||
return this.loadPage(0, this._currentConfig.pageSize, { [this._searchKey]: value } as SearchOptions);
|
||||
return this.loadPage(0, this._currentConfig.pageSize, {
|
||||
...this._currentConfig.options,
|
||||
[this._searchKey]: value,
|
||||
} as SearchOptions);
|
||||
}
|
||||
|
||||
reloadPage(): Observable<Class[]> {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user