Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ToWipf committed Jul 1, 2024
1 parent f76647a commit dfe0913
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion angular-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jasmarty-app",
"version": "2.2.1",
"version": "2.2.4",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0 --port 3000 --disable-host-check",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ <h3>Daylog {{dateForLoad?.date}}</h3>
<ng-scrollbar class="pscrollTabellen" track="horizontal">
<div class="gridRow_ohne_rand">
<div class="tabelleR" [ngClass]="{'hide': !bShowDayTable }">
<ng-scrollbar class="pscroll">
<ng-scrollbar class="pscrollTabellen" track="vertical">
<table mat-table [dataSource]="daylistDataSource" matSort matSortActive="date" matSortDirection="desc" class="mat-elevation-z8">
<ng-container matColumnDef="id">
<th mat-header-cell *matHeaderCellDef mat-sort-header>ID</th>
Expand Down Expand Up @@ -135,7 +135,7 @@ <h3>Daylog {{dateForLoad?.date}}</h3>
</ng-scrollbar>
</div>
<div class="tabelleL">
<ng-scrollbar class="pscroll">
<ng-scrollbar class="pscrollTabellen" track="vertical">
<app-daylog-eventlist [filterEventType]="selectedEventTypeFilter" [filterTextEvent]="sFilterTextEvent" [showAllTableColumns]="bShowAllTableColumns" [dateForLoad]="dateForLoad" [daylogTypes]="daylogTypes"></app-daylog-eventlist>
</ng-scrollbar>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
background-color: #b3b3b3;
}

.pscroll {
.pscrollTabellen {
height: 70vh;
}

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/wipf/jasmarty/logic/base/MainHome.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class MainHome {
AuthKeyService authKeyService;

private static final Logger LOGGER = Logger.getLogger("_MainHome_");
public static final String VERSION = "2.2.1";
public static final String VERSION = "2.2.4";
public static final String AUTH_KEY_NAME = "authKey";

/**
Expand Down

0 comments on commit dfe0913

Please sign in to comment.