Skip to content

Commit

Permalink
formatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvinJWendt committed Sep 26, 2022
1 parent f891f29 commit 0779450
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/internal/html/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h2 class="card-title text-2xl lg:text-3xl">Authentication Required</h2>
</div>

<script>
particlesJS.load('particles-js', 'assets/particles.json', function() {
particlesJS.load('particles-js', 'assets/particles.json', function () {
console.log('callback - particles.js config loaded');
});

Expand Down
2 changes: 1 addition & 1 deletion src/internal/pkg/config/validation.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ var (
passwords := strings.Split(strings.Split(passwordsRaw, ":")[1], "|")

algoSupported := false
for possibleValue, _ := range SupportedAlgorithms {
for possibleValue := range SupportedAlgorithms {
if algorithm == possibleValue {
algoSupported = true
}
Expand Down

0 comments on commit 0779450

Please sign in to comment.