Skip to content

Commit

Permalink
fix für "spiel abgesagt"
Browse files Browse the repository at this point in the history
  • Loading branch information
sansan88 committed Aug 13, 2024
1 parent 6461142 commit b4dbc76
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ android {
applicationId "app.myclub.defaultapp"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 78
versionCode 79
versionName "1.7.8"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
Expand Down
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = App/AppDebug.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 78;
CURRENT_PROJECT_VERSION = 79;
DEVELOPMENT_TEAM = U7DQUX87VS;
INFOPLIST_FILE = App/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = myclub;
Expand All @@ -416,7 +416,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_ENTITLEMENTS = App/AppRelease.entitlements;
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 78;
CURRENT_PROJECT_VERSION = 79;
DEVELOPMENT_TEAM = U7DQUX87VS;
INFOPLIST_FILE = App/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = myclub;
Expand Down
2 changes: 2 additions & 0 deletions src/app/models/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ export interface Game {
status: boolean;
countAttendees: number;
attendees: any;

gameStatus: any;
}
export interface SwissUnihockeyGame extends Game {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,10 @@ <h3 *ngIf="game.result && game.result != '0:0(0:0)'">
<ion-icon slot="icon-only" name="podium-outline"></ion-icon>
{{game.result}}
</h3>
<h3 *ngIf="game.gameStatus && game.gameStatus=='deleted'">
<ion-icon slot="icon-only" color="danger" name="close-circle-outline"></ion-icon>
Spiel gelöscht
</h3>
</ion-label>
<ion-note slot="end" (click)="openChampionshipDetailModal(game, true)">
<ion-badge color="primary">{{game.countAttendees}}</ion-badge>
Expand Down

0 comments on commit b4dbc76

Please sign in to comment.