diff --git a/.gitea/workflows/code-analysis.yml b/.gitea/workflows/code-analysis.yml index 7e0dcf8..77f0c54 100755 --- a/.gitea/workflows/code-analysis.yml +++ b/.gitea/workflows/code-analysis.yml @@ -13,7 +13,9 @@ jobs: uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 with: clean: true - fetch-depth: 0 + # Der Analyse-Workflow benötigt keine Historie. Ein flacher Checkout + # verhindert, dass der Runner das große Repository-Pack vollständig lädt. + fetch-depth: 1 - name: Ensure clean workspace run: | diff --git a/components/HomeSpielplanTeamWidget.vue b/components/HomeSpielplanTeamWidget.vue index fffbd6f..4dc5228 100755 --- a/components/HomeSpielplanTeamWidget.vue +++ b/components/HomeSpielplanTeamWidget.vue @@ -58,7 +58,9 @@

- {{ game.HeimMannschaft }} vs {{ game.GastMannschaft }} + {{ formatMatchTeamName(game.HeimMannschaft, game.HeimMannschaftAltersklasse, game.Altersklasse) }} + vs + {{ formatMatchTeamName(game.GastMannschaft, game.GastMannschaftAltersklasse, game.Altersklasse) }}

@@ -69,6 +71,7 @@ \ No newline at end of file + diff --git a/components/Navigation.vue b/components/Navigation.vue index 70fc015..fb0fe67 100755 --- a/components/Navigation.vue +++ b/components/Navigation.vue @@ -111,10 +111,10 @@ -