Skip to content
This repository was archived by the owner on Oct 17, 2024. It is now read-only.

Commit c0adc50

Browse files
committed
Update ColibriComponents to 0.1.7
1 parent e14fd3b commit c0adc50

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ let package = Package(
2222
],
2323
dependencies: [
2424
.package(url: "https://github.com/lukepistrol/SwiftLintPlugin", from: "0.2.2"),
25-
.package(url: "https://github.com/david-swift/ColibriComponents-macOS", from: "0.1.0")
25+
.package(url: "https://github.com/david-swift/ColibriComponents-macOS", from: "0.1.7")
2626
],
2727
targets: [
2828
.target(

Sources/ActionKit/Model/Data/Function.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public struct Function: Identifiable, Equatable, ColibriComponents.Bindable {
7676
var requireOnlyOneInput: Bool
7777

7878
/// The functions that the nodes can access ordered in groups.
79-
var groupedFunctions: [Folder<Function>]
79+
var groupedFunctions: [Folder<Self>]
8080

8181
/// The functions that the nodes can access.
8282
var functions: [Self] {

Sources/ActionKit/View/NodeView.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ struct NodeView: View {
4444
}
4545
.contextMenu {
4646
ForEach(tools, id: \.title.key) { item in
47-
Button(item.title) {
47+
Button(item.title.localized) {
4848
selected = true
4949
item.action()
5050
}

0 commit comments

Comments
 (0)