Skip to content

Commit

Permalink
show suggested links related to each interaction event
Browse files Browse the repository at this point in the history
  • Loading branch information
aapis committed Nov 12, 2024
1 parent ec3693f commit 8079322
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,8 +364,12 @@ extension WidgetLibrary.UI {
FancyDivider()
LazyVGrid(columns: self.twoCol, alignment: .leading) {
GridRow {
DaysWhereMentioned()
EmptyView()
UI.DaysWhereMentioned()
UI.SuggestedLinksInRange(
period: .custom,
start: self.state.session.date.startOfDay,
end: self.state.session.date.endOfDay
)
}
}
FancyDivider()
Expand Down
2 changes: 1 addition & 1 deletion KWCore/Sources/UI/WidgetLibrary/WidgetLibrary.UI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -1959,7 +1959,7 @@ extension WidgetLibrary {
Spacer()
}
.id(self.vid)
.frame(height: 200)
.frame(height: 250)
.onAppear(perform: self.actionOnAppear)
.onChange(of: self.state.session.job) { self.actionOnAppear() }
.onChange(of: self.state.session.project) { self.actionOnAppear() }
Expand Down

0 comments on commit 8079322

Please sign in to comment.