We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 554e3f8 commit 7c7ae1bCopy full SHA for 7c7ae1b
1 file changed
_includes/filter_widget.html
@@ -169,13 +169,18 @@
169
}
170
/* Ensure this is at the bottom of your style block */
171
.is-hidden { display: none !important; }
172
+
173
+ /* Keeps the flex flow of the parent row */
174
+ #extra-tag-container:not(.is-hidden) {
175
+ display: contents !important;
176
+ }
177
</style>
178
179
<script>
180
/** 1. On Load: Set state from URL and run filter **/
181
document.addEventListener('DOMContentLoaded', function() {
182
const params = new URLSearchParams(window.location.search);
- window.currentTag = params.get('tag'); // No fallback here ensures empty if missing
183
+ window.currentTag = params.get('tag') || 'all';
184
185
const searchInput = document.getElementById('search-input');
186
if (searchInput) searchInput.value = params.get('q') || '';
0 commit comments