Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.04 KB

bugs.md

File metadata and controls

40 lines (30 loc) · 1.04 KB
title
Bugs
<script setup> import { data } from '/data/bugs.data' const email = import.meta.env.VITE_EMAIL const assignedBugs = data.bugs.filter(function (b) { return b.assigned_to.includes(email) || // add some other bugs that I submitted patches for [36295, 36195].includes(b.id) }) const reportedBugs = data.bugs.filter(function (b) { return b.creator.includes(email) }) const coolBugs = data.bugs.filter(function (b) { return b.cc.includes(email) && // filter out resolved bugs !['Pushed to main', 'Pushed to stable', 'Pushed to oldstable', 'RESOLVED'].includes(b.status) }) </script>

I might write about some bugs here. Below is a list of bugs based on my activity on Bugzilla. This page will be updated whenever the site is rebuilt.

Bugs I'm squashin' 🥾 🐛

Bugs I spotted 👀 🐛

Bugs I'm studying 🔎 🐛

<style> </style>