Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove id from variable name
  • Loading branch information
cobbinma committed Jul 6, 2021
commit e8116ff52f22425a09cfb3bc8656aa79015d1ad5
2 changes: 1 addition & 1 deletion src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ impl App {
if !self
.navigation_stack
.last()
.map(|last_route_id| last_route_id.id == next_route_id)
.map(|last_route| last_route.id == next_route_id)
.unwrap_or(false)
{
self.navigation_stack.push(Route {
Expand Down