Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
fix js bug
Browse files Browse the repository at this point in the history
  • Loading branch information
magnushoerberg committed Feb 15, 2021
1 parent 1d7e478 commit 25d9ec4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ var (
Port string
Retention int64
AuthType string
Version string = "0.3.10"
Version string = "0.3.11"
GitCommit string = "HEAD"
JMXRequestTimeout time.Duration
KafkaDir string
Expand Down
2 changes: 1 addition & 1 deletion static/js/acl.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
btn.classList.add('btn-danger')
btn.innerHTML = 'Delete'
btn.addEventListener('click', function(evt) {
if pattern_type === null {
if (pattern_type === null) {
pattern_type = data.pattern_type;
}
const url = `/api/acls`
Expand Down

0 comments on commit 25d9ec4

Please sign in to comment.