Fix list small card layout

Some changes from #141 were lost
This commit is contained in:
Michael Shamoon
2020-12-21 08:14:06 -08:00
parent d9e3895f34
commit 0e93f7eba5
3 changed files with 133 additions and 130 deletions

View File

@@ -150,6 +150,6 @@
</table>
<div class=" m-n2 row" *ngIf="displayMode == 'smallCards'">
<div class="m-n2 row row-cols-paperless-cards" *ngIf="displayMode == 'smallCards'">
<app-document-card-small [document]="d" [selected]="list.isSelected(d)" (selectedChange)="list.setSelected(d, $event)" *ngFor="let d of list.documents" (clickTag)="clickTag($event)" (clickCorrespondent)="clickCorrespondent($event)"></app-document-card-small>
</div>

View File

@@ -4,7 +4,7 @@
export const environment = {
production: false,
apiBaseUrl: "http://localhost:8000/api/",
apiBaseUrl: "http://10.0.1.28:8000/api/",
appTitle: "Paperless-ng",
version: "DEVELOPMENT"
};