~cytrogen/masto-fe

ref: cf9230fa1ca1e2222c5e411f2f6b2415f2def541 masto-fe/lib/simple_navigation/item_extensions.rb -rw-r--r-- 287 bytes
cf9230fa — renovate[bot] Update docker/build-push-action action to v5 (#27120) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module SimpleNavigation
  module ItemExtensions
    def url
      if @url.nil? && @sub_navigation
        @sub_navigation.items.first.url
      else
        @url
      end
    end
  end
end

SimpleNavigation::Item.prepend(SimpleNavigation::ItemExtensions)