forked from kedacore/keda-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Provide filtering capabilities for scalers (kedacore#1400)
* Feat: Provide filtering capabilities for scalers Signed-off-by: thisisobate <[email protected]> * chore: provide filter button on mobile Signed-off-by: thisisobate <[email protected]> * chore: reduce spacing between filter and scaler cards Signed-off-by: thisisobate <[email protected]> * chore: improve filter logic to use new model Signed-off-by: thisisobate <[email protected]> * chore: reorder filter options Signed-off-by: thisisobate <[email protected]> * chore: nit fix Signed-off-by: thisisobate <[email protected]> --------- Signed-off-by: thisisobate <[email protected]> Co-authored-by: Tom Kerkhove <[email protected]> Signed-off-by: Ranjith Gopal <[email protected]>
- Loading branch information
1 parent
d7e6f24
commit 7d51c74
Showing
6 changed files
with
197 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{{- $index := slice -}} | ||
{{- range $scalers := where site.RegularPages ".CurrentSection.Title" "Scalers" -}} | ||
{{- $index = $index | append (dict "title" $scalers.Title "version" (index (first 3 (split (delimit (split $scalers.RelPermalink "/") "," "") ",")) 2) "href" $scalers.RelPermalink "availability" $scalers.Params.availability "description" ($scalers.Description | markdownify) "maintainer" $scalers.Params.maintainer ) -}} | ||
{{- $index = $index | append (dict "title" $scalers.Title "version" (index (first 3 (split (delimit (split $scalers.RelPermalink "/") "," "") ",")) 2) "href" $scalers.RelPermalink "availability" $scalers.Params.availability "description" ($scalers.Description | markdownify) "maintainer" $scalers.Params.maintainer "category" $scalers.Params.category "type" "built-in" ) -}} | ||
{{- end -}} | ||
|
||
{{- $index | jsonify -}} | ||
{{- $index | jsonify -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.