mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-14 04:13:52 +02:00
Fix chart world names
This commit is contained in:
@@ -420,7 +420,11 @@
|
||||
|
||||
const timeString = timeToText(param.data, true);
|
||||
const color = param.color;
|
||||
const name = param.name;
|
||||
let name = param.name;
|
||||
// jank: remove axis label rich text formatting
|
||||
name = name.endsWith('}') ? name.slice(0, -1) : name;
|
||||
name = name.replaceAll('{filtered|', '').replaceAll('{normal|', '');
|
||||
|
||||
const location = parseLocation(instanceData.location);
|
||||
|
||||
return `
|
||||
|
||||
Reference in New Issue
Block a user