move permissions input components

This commit is contained in:
Michael Shamoon
2022-12-14 00:10:27 -08:00
parent 71e7c502f3
commit 1633903c97
11 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
<div class="paperless-input-select">
<div>
<ng-select name="inputId" [(ngModel)]="value"
[disabled]="disabled"
clearable="true"
[items]="users"
multiple="true"
bindLabel="username"
bindValue="id"
(change)="onChange(value)">
</ng-select>
</div>
</div>