Merge pull request 'Hide bubble timeline icon from desktop nav if empty' (#197) from sfr/pleroma-fe:fix/navbar-hide-bubble into develop
Reviewed-on: https://akkoma.dev/AkkomaGang/pleroma-fe/pulls/197
This commit is contained in:
		
						commit
						0810c57c8b
					
				
					 2 changed files with 4 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -100,6 +100,9 @@ export default {
 | 
			
		|||
    privateMode () { return this.$store.state.instance.private },
 | 
			
		||||
    shouldConfirmLogout () {
 | 
			
		||||
      return this.$store.getters.mergedConfig.modalOnLogout
 | 
			
		||||
    },
 | 
			
		||||
    showBubbleTimeline () {
 | 
			
		||||
      return this.$store.state.instance.localBubbleInstances.length > 0
 | 
			
		||||
    }
 | 
			
		||||
  },
 | 
			
		||||
  methods: {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -55,7 +55,7 @@
 | 
			
		|||
            />
 | 
			
		||||
          </router-link>
 | 
			
		||||
          <router-link
 | 
			
		||||
            v-if="currentUser"
 | 
			
		||||
            v-if="currentUser && showBubbleTimeline"
 | 
			
		||||
            :to="{ name: 'bubble-timeline' }"
 | 
			
		||||
            class="nav-icon"
 | 
			
		||||
          >
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue