Skip to content

Commit

Permalink
Update ColibriComponents to 0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
david-swift committed Jul 8, 2023
1 parent e14fd3b commit c0adc50
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/lukepistrol/SwiftLintPlugin", from: "0.2.2"),
.package(url: "https://github.com/david-swift/ColibriComponents-macOS", from: "0.1.0")
.package(url: "https://github.com/david-swift/ColibriComponents-macOS", from: "0.1.7")
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion Sources/ActionKit/Model/Data/Function.swift
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public struct Function: Identifiable, Equatable, ColibriComponents.Bindable {
var requireOnlyOneInput: Bool

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

/// The functions that the nodes can access.
var functions: [Self] {
Expand Down
2 changes: 1 addition & 1 deletion Sources/ActionKit/View/NodeView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ struct NodeView: View {
}
.contextMenu {
ForEach(tools, id: \.title.key) { item in
Button(item.title) {
Button(item.title.localized) {
selected = true
item.action()
}
Expand Down

0 comments on commit c0adc50

Please sign in to comment.