Skip to content
This repository has been archived by the owner on Jan 7, 2022. It is now read-only.

Commit

Permalink
Fixing number of queries message
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Abraham committed Dec 20, 2019
1 parent 75fe1d5 commit 56c3894
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion client/Pages/EventTypeDetails/View.elm
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,13 @@ consumingQueriesPanel queryStore =
List.length sqlQueriesList

countStr =
pluralCount count "consuming nakadi-sql queries"
if count == 1 then
String.fromInt count
++ " consuming nakadi-sql query"

else
String.fromInt count
++ " consuming nakadi-sql queries"
in
div []
[ span []
Expand Down

0 comments on commit 56c3894

Please sign in to comment.