mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 04:20:12 +02:00
fix related tab sizing (#1484)
This commit is contained in:
@@ -36,10 +36,10 @@ export const JoinedArtists = ({
|
||||
|
||||
for (const artist of artists) {
|
||||
const name = artist.name;
|
||||
|
||||
|
||||
// Avoid an infinite loop when `artist.name` is an empty string.
|
||||
if (!name) continue;
|
||||
|
||||
|
||||
const regex = new RegExp(escapeRegex(name), 'gi');
|
||||
let match: null | RegExpExecArray = null;
|
||||
while ((match = regex.exec(artistName)) !== null) {
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
.queue-container {
|
||||
position: relative;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
height: 100%;
|
||||
|
||||
Reference in New Issue
Block a user