🔒 Add conditional rendering for Gamemaster tools based on visibility flag

This commit is contained in:
2026-01-30 05:46:57 +00:00
parent fffaa01a73
commit 06b1ae6aa5

View File

@@ -41,13 +41,13 @@
</div> </div>
</router-link> </router-link>
<router-link to="/gamemaster" class="tool-card"> <router-link v-if="showGamemasterTools" to="/gamemaster" class="tool-card">
<div class="tool-icon">📦</div> <div class="tool-icon">📦</div>
<h3>Gamemaster Manager</h3> <h3>Gamemaster Manager</h3>
<p>Fetch and process Pokemon GO gamemaster data from PokeMiners</p> <p>Fetch and process Pokemon GO gamemaster data from PokeMiners</p>
</router-link> </router-link>
<router-link to="/gamemaster-explorer" class="tool-card"> <router-link v-if="showGamemasterTools" to="/gamemaster-explorer" class="tool-card">
<div class="tool-icon">🔍</div> <div class="tool-icon">🔍</div>
<h3>Gamemaster Explorer</h3> <h3>Gamemaster Explorer</h3>
<p>Search, filter, and explore processed gamemaster JSON files</p> <p>Search, filter, and explore processed gamemaster JSON files</p>