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