Ferrite: Format
Signed-off-by: kingbri <bdashore3@proton.me>
This commit is contained in:
parent
87d94e4c35
commit
9f83ebfce0
3 changed files with 3 additions and 3 deletions
|
|
@ -9,6 +9,6 @@ import Foundation
|
||||||
|
|
||||||
extension OperatingSystemVersion {
|
extension OperatingSystemVersion {
|
||||||
func toString() -> String {
|
func toString() -> String {
|
||||||
return "\(self.majorVersion).\(self.minorVersion).\(self.patchVersion)"
|
"\(majorVersion).\(minorVersion).\(patchVersion)"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ struct PluginCatalogButtonView<PJ: PluginJson>: View {
|
||||||
}
|
}
|
||||||
.font(
|
.font(
|
||||||
.footnote
|
.footnote
|
||||||
.weight(.bold)
|
.weight(.bold)
|
||||||
)
|
)
|
||||||
.padding(.horizontal, 7)
|
.padding(.horizontal, 7)
|
||||||
.padding(.vertical, 5)
|
.padding(.vertical, 5)
|
||||||
|
|
|
||||||
|
|
@ -45,7 +45,7 @@ struct PluginAggregateView<P: Plugin, PJ: PluginJson>: View {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !installedPlugins.isEmpty {
|
if !installedPlugins.isEmpty {
|
||||||
Section(header: InlineHeader("Installed")) {
|
Section(header: InlineHeader("Installed")) {
|
||||||
ForEach(installedPlugins, id: \.self) { installedPlugin in
|
ForEach(installedPlugins, id: \.self) { installedPlugin in
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue