Skip to content

Commit f53bdb2

Browse files
committed
Fix pre-release and themeing
1 parent 5b8b862 commit f53bdb2

File tree

4 files changed

+249
-181
lines changed

4 files changed

+249
-181
lines changed

app/components/shared/logo.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def view_template
99
img(src: image_url("logo.svg"), class: "h-4 block dark:hidden")
1010
img(src: image_url("logo_dark.svg"), class: "h-4 hidden dark:block")
1111
span(class: "sr-only") { "RubyUI" }
12-
Badge(variant: :amber, size: :sm, class: "ml-2 whitespace-nowrap") { "Pre Release" }
12+
Badge(variant: :amber, size: :sm, class: "ml-2 whitespace-nowrap") { "1.0" }
1313
}
1414
end
1515
end

app/components/themes/grid/repo_tabs.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def star_icon
118118
def repositories
119119
[
120120
Repo.new(github_url: "https://github.com/phlex-ruby/phlex", name: "phlex", stars: 961, version: "v1.8.1"),
121-
Repo.new(github_url: "https://github.com/joeldrapper/green_dots", name: "green_dots", stars: 40, version: "Pre Release"),
121+
Repo.new(github_url: "https://github.com/joeldrapper/green_dots", name: "green_dots", stars: 40, version: "1.0"),
122122
Repo.new(github_url: "https://github.com/joeldrapper/literal", name: "literal", stars: 96, version: "v0.1.0")
123123
]
124124
end

app/views/docs/tabs.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ def star_icon
182182
def repositories
183183
[
184184
Repo.new(github_url: "https://github.com/phlex-ruby/phlex", name: "phlex", stars: 961, version: "v1.8.1"),
185-
Repo.new(github_url: "https://github.com/joeldrapper/green_dots", name: "green_dots", stars: 40, version: "Pre Release"),
185+
Repo.new(github_url: "https://github.com/joeldrapper/green_dots", name: "green_dots", stars: 40, version: "1.0"),
186186
Repo.new(github_url: "https://github.com/joeldrapper/literal", name: "literal", stars: 96, version: "v0.1.0")
187187
]
188188
end

0 commit comments

Comments
 (0)