You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@whimsical.apache.org by ru...@apache.org on 2019/11/21 02:33:21 UTC

[whimsy] 01/03: Revert "allow flagged traversal to cross agenda index boundaries"

This is an automated email from the ASF dual-hosted git repository.

rubys pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git

View the commit online:
https://github.com/apache/whimsy/commit/23aa214cec824708f99a961f0678575ecfec3bc2

commit 23aa214cec824708f99a961f0678575ecfec3bc2
Author: Sam Ruby <ru...@Sams-MacBook-Pro.local>
AuthorDate: Wed Nov 20 20:18:56 2019 -0500

    Revert "allow flagged traversal to cross agenda index boundaries"
    
    This reverts commit f7ba86bdb4ee840e1fa4791ce4edf3bd0669d4ad.
---
 www/board/agenda/views/layout/footer.js.rb | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/www/board/agenda/views/layout/footer.js.rb b/www/board/agenda/views/layout/footer.js.rb
index 9e3b517..781de62 100644
--- a/www/board/agenda/views/layout/footer.js.rb
+++ b/www/board/agenda/views/layout/footer.js.rb
@@ -111,7 +111,12 @@ class Footer < Vue
       elsif @@options.traversal == :flagged
         prefix = 'flagged/'
         while link and link.skippable
-          link = link.next
+          if Minutes.started and link.index
+            prefix = ''
+            break
+          else
+            link = link.next
+          end
         end
         link ||= {href: "flagged", title: 'Flagged'}
       elsif