Show events with pagination

This commit is contained in:
Achim Rohn
2025-08-13 01:00:07 +02:00
parent e58c682a43
commit 79924556f9
2 changed files with 42 additions and 13 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ type GlobalI18nImplementation struct {
}
func (g GlobalI18nImplementation) GetAllTexts() []I18nText {
allTexts := make([]I18nText, len(g.i18nTexts))
var allTexts []I18nText
for _, value := range g.i18nTexts {
allTexts = append(allTexts, value)
}